ServiceAuthenticationMiddleware Class
The ServiceAuthenticationMiddleware 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.WindowsAzure.Mobile.Service.Security
Assembly: Microsoft.WindowsAzure.Mobile.Service (in Microsoft.WindowsAzure.Mobile.Service.dll)
Inheritance Hierarchy
System.Object
Microsoft.Owin.OwinMiddleware
Microsoft.Owin.Security.Infrastructure.AuthenticationMiddleware<TOptions>
Microsoft.WindowsAzure.Mobile.Service.Security.ServiceAuthenticationMiddleware
Syntax
public class ServiceAuthenticationMiddleware : AuthenticationMiddleware<ServiceAuthenticationOptions>
public ref class ServiceAuthenticationMiddleware : AuthenticationMiddleware<ServiceAuthenticationOptions^>
type ServiceAuthenticationMiddleware =
class
inherit AuthenticationMiddleware<ServiceAuthenticationOptions>
end
Public Class ServiceAuthenticationMiddleware
Inherits AuthenticationMiddleware(Of ServiceAuthenticationOptions)
Constructors
Name | Description | |
---|---|---|
ServiceAuthenticationMiddleware(OwinMiddleware, IAppBuilder, ServiceAuthenticationOptions, IServiceTokenHandler) | Initializes a new instance of the ServiceAuthenticationMiddleware class. |
Properties
Name | Description | |
---|---|---|
Next | (Inherited from OwinMiddleware.) |
|
Options | (Inherited from AuthenticationMiddleware<TOptions>.) |
Methods
Name | Description | |
---|---|---|
CreateHandler() | (Overrides AuthenticationMiddleware<TOptions>.CreateHandler().) |
|
Equals(Object) | (Inherited from Object.) |
|
Finalize() | (Inherited from Object.) |
|
GetHashCode() | (Inherited from Object.) |
|
GetType() | (Inherited from Object.) |
|
Invoke(IOwinContext) | (Inherited from AuthenticationMiddleware<TOptions>.) |
|
MemberwiseClone() | (Inherited from Object.) |
|
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.WindowsAzure.Mobile.Service.Security Namespace
Return to top