AzureActiveDirectoryLoginProvider Class

Definition

Provides an LoginProvider implementation providing support for Azure Active Directory authentication.

public class AzureActiveDirectoryLoginProvider : Microsoft.WindowsAzure.Mobile.Service.Security.LoginProvider
type AzureActiveDirectoryLoginProvider = class
    inherit LoginProvider
Public Class AzureActiveDirectoryLoginProvider
Inherits LoginProvider
Inheritance
AzureActiveDirectoryLoginProvider
Derived

Constructors

AzureActiveDirectoryLoginProvider(HttpConfiguration, IServiceTokenHandler)

Initializes a new instance of the AzureActiveDirectoryLoginProvider class with a given config, and tokenHandler.

Properties

Config

Gets the System.Web.Http.HttpConfiguration for this instance.

Name

Gets or sets the name uniquely identifying this ILoginProvider. The name is used to refer to the this ILoginProvider from the LoginController as well as from the OWIN application pipeline.

TokenHandler

Gets the IServiceTokenHandler for this instance.

(Inherited from LoginProvider)
TokenLifetime

Gets or sets the lifetime for generated tokens.

(Inherited from LoginProvider)

Methods

AuthenticateClient(HttpRequestMessage)

Handles the specified client flow login request

ConfigureMiddleware(IAppBuilder, ServiceSettingsDictionary)

Configures this module for participation in the OWIN application pipeline. The module should be configured as passive so as only to participate in the mobile service authentication process when requested by the LoginController.

CreateCredentials(ClaimsIdentity)

Return the set of provider specific credentials for inclusion in a login token

CreateLoginResult(ClaimsIdentity, String)

Creates a login result to return after a successful login.

(Inherited from LoginProvider)
CreateTokenInfo(ClaimsIdentity, ProviderCredentials, String)

Creates the final login token using the specified inputs. Derived classes can override to customize the login token produced.

GetClientFlowAuthenticationType()

Gets the name under which the OWIN middleware handling the client flow should be registered.

(Inherited from LoginProvider)
GetSingleTenant(Collection<String>)

Gets the single tenant used for OWIN middleware validation. The current Azure Active Directory OWIN middleware only supports single-tenant validation. In case we have a single tenant then we let the middleware do the validation but if there are multiple tenants then we do the validation here.

GetTenants(ServiceSettingsDictionary)

Returns the set of tenants that have been registered for tenant issuer validation.

ParseCredentials(JObject)

Deserialize the specified provider credentials

UseCustomAzureActiveDirectoryBearerAuthentication(IAppBuilder, WindowsAzureActiveDirectoryBearerAuthenticationOptions)

Registers the OWIN middleware for Azure Active Directory client flow authentication.

Applies to