OAuthAuthorizationServerOptions.TokenEndpointPath Property
The request path client applications communicate with directly as part of the OAuth protocol. Must begin with a leading slash, like "/Token". If the client is issued a client_secret, it must be provided to this endpoint.
Namespace: Microsoft.Owin.Security.OAuth
Assembly: Microsoft.Owin.Security.OAuth (in Microsoft.Owin.Security.OAuth.dll)
Syntax
'Declaration
Public Property TokenEndpointPath As PathString
Get
Set
'Usage
Dim instance As OAuthAuthorizationServerOptions
Dim value As PathString
value = instance.TokenEndpointPath
instance.TokenEndpointPath = value
public PathString TokenEndpointPath { get; set; }
public:
property PathString TokenEndpointPath {
PathString get ();
void set (PathString value);
}
member TokenEndpointPath : PathString with get, set
function get TokenEndpointPath () : PathString
function set TokenEndpointPath (value : PathString)
Property Value
Type: Microsoft.Owin.PathString