Share via


AuthenticationResponseGrant Constructor

 

Initializes a new instance of the AuthenticationResponseGrant class.

Namespace:   Microsoft.Owin.Security
Assembly:  Microsoft.Owin (in Microsoft.Owin.dll)

Overload List

Name Description
System_CAPS_pubmethod AuthenticationResponseGrant(ClaimsIdentity, AuthenticationProperties)

Initializes a new instance of the AuthenticationResponseGrant class.

System_CAPS_pubmethod AuthenticationResponseGrant(ClaimsPrincipal, AuthenticationProperties)

Initializes a new instance of the AuthenticationResponseGrant class.

See Also

AuthenticationResponseGrant Class
Microsoft.Owin.Security Namespace

Return to top

AuthenticationResponseGrant Constructor (ClaimsIdentity, AuthenticationProperties)

Initializes a new instance of the AuthenticationResponseGrant class.

Syntax

public AuthenticationResponseGrant(
    ClaimsIdentity identity,
    AuthenticationProperties properties
)
public:
AuthenticationResponseGrant(
    ClaimsIdentity^ identity,
    AuthenticationProperties^ properties
)
new : 
        identity:ClaimsIdentity *
        properties:AuthenticationProperties -> AuthenticationResponseGrant
Public Sub New (
    identity As ClaimsIdentity,
    properties As AuthenticationProperties
)

Parameters

Return to top

AuthenticationResponseGrant Constructor (ClaimsPrincipal, AuthenticationProperties)

Initializes a new instance of the AuthenticationResponseGrant class.

Syntax

public AuthenticationResponseGrant(
    ClaimsPrincipal principal,
    AuthenticationProperties properties
)
public:
AuthenticationResponseGrant(
    ClaimsPrincipal^ principal,
    AuthenticationProperties^ properties
)
new : 
        principal:ClaimsPrincipal *
        properties:AuthenticationProperties -> AuthenticationResponseGrant
Public Sub New (
    principal As ClaimsPrincipal,
    properties As AuthenticationProperties
)

Parameters

Return to top