BaseValidatingTicketContext<TOptions>.Ticket Property

 

Contains the identity and properties for the application to authenticate. If the Validated method is invoked with an AuthenticationTicket or ClaimsIdentity argument, that new value is assigned to this property in addition to changing IsValidated to true.

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

Syntax

public AuthenticationTicket Ticket { get; private set; }
public:
property AuthenticationTicket^ Ticket {
    AuthenticationTicket^ get();
    private: void set(AuthenticationTicket^ value);
}
member Ticket : AuthenticationTicket with get, private set
Public Property Ticket As AuthenticationTicket
    Get
    Private Set
End Property

Property Value

Type: Microsoft.Owin.Security.AuthenticationTicket

Returns AuthenticationTicket.

See Also

BaseValidatingTicketContext<TOptions> Class
Microsoft.Owin.Security.OAuth Namespace

Return to top