TokenEndpointRequest Class

 

Data object representing the information contained in form encoded body of a Token endpoint request.

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

System::Object
  Microsoft.Owin.Security.OAuth.Messages::TokenEndpointRequest

public ref class TokenEndpointRequest 

NameDescription
System_CAPS_pubmethodTokenEndpointRequest(IReadableStringCollection^)

Creates a new instance populated with values from the form encoded body parameters.

NameDescription
System_CAPS_pubpropertyAuthorizationCodeGrant

Data object available when the "grant_type" is "authorization_code". See also http://tools.ietf.org/html/rfc6749#section-4.1.3

System_CAPS_pubpropertyClientCredentialsGrant

Data object available when the "grant_type" is "client_credentials". See also http://tools.ietf.org/html/rfc6749#section-4.4.2

System_CAPS_pubpropertyClientId

The "client_id" parameter of the Token endpoint request. This parameter is optional. It might not be present if the request is authenticated in a different way, for example, by using basic authentication credentials.

System_CAPS_pubpropertyCustomExtensionGrant

Data object available when the "grant_type" is unrecognized. See also http://tools.ietf.org/html/rfc6749#section-4.5

System_CAPS_pubpropertyGrantType

The "grant_type" parameter of the Token endpoint request. This parameter is required.

System_CAPS_pubpropertyIsAuthorizationCodeGrantType

True when the "grant_type" is "authorization_code". See also http://tools.ietf.org/html/rfc6749#section-4.1.3

System_CAPS_pubpropertyIsClientCredentialsGrantType

True when the "grant_type" is "client_credentials". See also http://tools.ietf.org/html/rfc6749#section-4.4.2

System_CAPS_pubpropertyIsCustomExtensionGrantType

True when the "grant_type" is unrecognized. See also http://tools.ietf.org/html/rfc6749#section-4.5

System_CAPS_pubpropertyIsRefreshTokenGrantType

True when the "grant_type" is "refresh_token". See also http://tools.ietf.org/html/rfc6749#section-6

System_CAPS_pubpropertyIsResourceOwnerPasswordCredentialsGrantType

True when the "grant_type" is "password". See also http://tools.ietf.org/html/rfc6749#section-4.3.2

System_CAPS_pubpropertyParameters

The form encoded body parameters of the Token endpoint request

System_CAPS_pubpropertyRefreshTokenGrant

Data object available when the "grant_type" is "refresh_token". See also http://tools.ietf.org/html/rfc6749#section-6

System_CAPS_pubpropertyResourceOwnerPasswordCredentialsGrant

Data object available when the "grant_type" is "password". See also http://tools.ietf.org/html/rfc6749#section-4.3.2

NameDescription
System_CAPS_pubmethodEquals(Object^)

(Inherited from Object.)

System_CAPS_protmethodFinalize()

(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()

(Inherited from Object.)

System_CAPS_pubmethodGetType()

(Inherited from Object.)

System_CAPS_protmethodMemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethodToString()

(Inherited from Object.)

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show: