LoginController Class

Definition

[System.Web.Http.Description.ApiExplorerSettings(IgnoreApi=true)]
public class LoginController : System.Web.Http.ApiController
[<System.Web.Http.Description.ApiExplorerSettings(IgnoreApi=true)>]
type LoginController = class
    inherit ApiController
Public Class LoginController
Inherits ApiController
Inheritance
LoginController
Attributes
System.Web.Http.Description.ApiExplorerSettingsAttribute

Constructors

LoginController(ApiServices)

Initializes a new instance of the LoginController.

Methods

CreateLoginResult(ILoginProvider, ClaimsIdentity)
Get(String, String, String, String)

Handler for server login flows.

GetLoginProvider(IDictionary<String,List<ILoginProvider>>, String)

Gets the ILoginProvider registered with a given loginProvider name or throws an HttpResponseException with an error indicating why it wasn't found.

Initialize(HttpControllerContext)
Post(String)

Handler for client login flows (where the client provides the initial token instead of us obtaining it server side)

Applies to