AuthenticateResult Class
Acts as the return value from calls to the IAuthenticationManager's AuthenticeAsync methods.
Namespace: Microsoft.Owin.Security
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Inheritance Hierarchy
System.Object
Microsoft.Owin.Security.AuthenticateResult
Syntax
public class AuthenticateResult
public ref class AuthenticateResult
type AuthenticateResult = class end
Public Class AuthenticateResult
Constructors
Name | Description | |
---|---|---|
AuthenticateResult(IIdentity, AuthenticationProperties, AuthenticationDescription) | Create an instance of the result object. |
Properties
Name | Description | |
---|---|---|
Description | Contains description properties for the middleware authentication type in general. Does not vary per request. |
|
Identity | Contains the claims that were authenticated by the given AuthenticationType. If the authentication type was not successful the Identity property will be null. |
|
Properties | Contains extra values that were provided with the original SignIn call. |
Methods
Name | Description | |
---|---|---|
Equals(Object) | (Inherited from Object.) |
|
Finalize() | (Inherited from Object.) |
|
GetHashCode() | (Inherited from Object.) |
|
GetType() | (Inherited from Object.) |
|
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.Owin.Security Namespace
Return to top