Share via


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
System_CAPS_pubmethod AuthenticateResult(IIdentity, AuthenticationProperties, AuthenticationDescription)

Create an instance of the result object.

Properties

Name Description
System_CAPS_pubproperty Description

Contains description properties for the middleware authentication type in general. Does not vary per request.

System_CAPS_pubproperty Identity

Contains the claims that were authenticated by the given AuthenticationType. If the authentication type was not successful the Identity property will be null.

System_CAPS_pubproperty Properties

Contains extra values that were provided with the original SignIn call.

Methods

Name Description
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_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.Owin.Security Namespace

Return to top