MobileAppAuthenticationMiddleware Class

 

The MobileAppAuthenticationMiddleware provides the OWIN middleware for authenticating a caller who has already authenticated using the Login controller, or has provided HTTP basic authentication credentials matching either the application key or the master key (for admin access).

Namespace:   Microsoft.Azure.Mobile.Server.Authentication
Assembly:  Microsoft.Azure.Mobile.Server.Authentication (in Microsoft.Azure.Mobile.Server.Authentication.dll)

Inheritance Hierarchy

System.Object
  Microsoft.Owin.OwinMiddleware
    Microsoft.Owin.Security.Infrastructure.AuthenticationMiddleware<TOptions>
      Microsoft.Azure.Mobile.Server.Authentication.MobileAppAuthenticationMiddleware

Syntax

public class MobileAppAuthenticationMiddleware : AuthenticationMiddleware<MobileAppAuthenticationOptions>
public ref class MobileAppAuthenticationMiddleware : AuthenticationMiddleware<MobileAppAuthenticationOptions^>
type MobileAppAuthenticationMiddleware = 
    class
        inherit AuthenticationMiddleware<MobileAppAuthenticationOptions>
    end
Public Class MobileAppAuthenticationMiddleware
    Inherits AuthenticationMiddleware(Of MobileAppAuthenticationOptions)

Constructors

Name Description
System_CAPS_pubmethod MobileAppAuthenticationMiddleware(OwinMiddleware, IAppBuilder, MobileAppAuthenticationOptions, IMobileAppTokenHandler)

Initializes a new instance of the MobileAppAuthenticationMiddleware class.

Properties

Name Description
System_CAPS_protproperty Next

(Inherited from OwinMiddleware.)

System_CAPS_pubproperty Options

(Inherited from AuthenticationMiddleware<TOptions>.)

Methods

Name Description
System_CAPS_protmethod CreateHandler()

(Overrides AuthenticationMiddleware<TOptions>.CreateHandler().)

System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod Invoke(IOwinContext)

(Inherited from AuthenticationMiddleware<TOptions>.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.Azure.Mobile.Server.Authentication Namespace

Return to top