OAuthTokenEndpointResponseContext Class
Provides context information used at the end of a token-endpoint-request.
Namespace: Microsoft.Owin.Security.OAuth
Assembly: Microsoft.Owin.Security.OAuth (in Microsoft.Owin.Security.OAuth.dll)
Inheritance Hierarchy
System.Object
Microsoft.Owin.Security.Provider.BaseContext<TOptions>
Microsoft.Owin.Security.Provider.EndpointContext<TOptions>
Microsoft.Owin.Security.OAuth.OAuthTokenEndpointResponseContext
Syntax
public class OAuthTokenEndpointResponseContext : EndpointContext<OAuthAuthorizationServerOptions>
public ref class OAuthTokenEndpointResponseContext : EndpointContext<OAuthAuthorizationServerOptions^>
type OAuthTokenEndpointResponseContext =
class
inherit EndpointContext<OAuthAuthorizationServerOptions>
end
Public Class OAuthTokenEndpointResponseContext
Inherits EndpointContext(Of OAuthAuthorizationServerOptions)
Constructors
Name | Description | |
---|---|---|
OAuthTokenEndpointResponseContext(IOwinContext, OAuthAuthorizationServerOptions, AuthenticationTicket, TokenEndpointRequest, String, IDictionary<String, Object>) | Initializes a new instance of the OAuthTokenEndpointResponseContext class |
Properties
Name | Description | |
---|---|---|
AccessToken | The issued Access-Token |
|
AdditionalResponseParameters | Enables additional values to be appended to the token response. |
|
Identity | Gets the identity of the resource owner. |
|
IsRequestCompleted | True if the request should not be processed further by other components.(Inherited from EndpointContext<TOptions>.) |
|
Options | (Inherited from BaseContext<TOptions>.) |
|
OwinContext | (Inherited from BaseContext<TOptions>.) |
|
Properties | Dictionary containing the state of the authentication session. |
|
Request | (Inherited from BaseContext<TOptions>.) |
|
Response | (Inherited from BaseContext<TOptions>.) |
|
TokenEndpointRequest | Gets information about the token endpoint request. |
|
TokenIssued | Gets whether or not the token should be issued. |
Methods
Name | Description | |
---|---|---|
Equals(Object) | (Inherited from Object.) |
|
Finalize() | (Inherited from Object.) |
|
GetHashCode() | (Inherited from Object.) |
|
GetType() | (Inherited from Object.) |
|
Issue(ClaimsIdentity, AuthenticationProperties) | Issues the token. |
|
MemberwiseClone() | (Inherited from Object.) |
|
RequestCompleted() | Prevents the request from being processed further by other components. IsRequestCompleted becomes true after calling.(Inherited from EndpointContext<TOptions>.) |
|
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.OAuth Namespace
Return to top