OAuthBearerAuthenticationOptions.AccessTokenFormat Property

Gets or sets the access token format for this authentication.

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

Syntax

'Declaration
Public Property AccessTokenFormat As ISecureDataFormat(Of AuthenticationTicket)
    Get 
    Set
'Usage
Dim instance As OAuthBearerAuthenticationOptions 
Dim value As ISecureDataFormat(Of AuthenticationTicket)

value = instance.AccessTokenFormat

instance.AccessTokenFormat = value
public ISecureDataFormat<AuthenticationTicket> AccessTokenFormat { get; set; }
public:
property ISecureDataFormat<AuthenticationTicket^>^ AccessTokenFormat {
    ISecureDataFormat<AuthenticationTicket^>^ get ();
    void set (ISecureDataFormat<AuthenticationTicket^>^ value);
}
member AccessTokenFormat : ISecureDataFormat<AuthenticationTicket> with get, set
function get AccessTokenFormat () : ISecureDataFormat<AuthenticationTicket>
function set AccessTokenFormat (value : ISecureDataFormat<AuthenticationTicket>)

Property Value

Type: Microsoft.Owin.Security.ISecureDataFormat<AuthenticationTicket>
The access token format for this authentication.

See Also

Reference

OAuthBearerAuthenticationOptions Class

Microsoft.Owin.Security.OAuth Namespace