OAuthValidateClientRedirectUriContext Class

 

Contains data about the OAuth client redirect URI

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


public ref class OAuthValidateClientRedirectUriContext : BaseValidatingClientContext

NameDescription
System_CAPS_pubmethodOAuthValidateClientRedirectUriContext(IOwinContext^, OAuthAuthorizationServerOptions^, String^, String^)

Initializes a new instance of the OAuthValidateClientRedirectUriContext class

NameDescription
System_CAPS_pubpropertyClientId

The "client_id" parameter for the current request. The Authorization Server application is responsible for validating this value identifies a registered client.(Inherited from BaseValidatingClientContext.)

System_CAPS_pubpropertyError

The error argument provided when SetError was called on this context. This is eventually returned to the client app as the OAuth "error" parameter.(Inherited from BaseValidatingContext<TOptions>.)

System_CAPS_pubpropertyErrorDescription

The optional errorDescription argument provided when SetError was called on this context. This is eventually returned to the client app as the OAuth "error_description" parameter.(Inherited from BaseValidatingContext<TOptions>.)

System_CAPS_pubpropertyErrorUri

The optional errorUri argument provided when SetError was called on this context. This is eventually returned to the client app as the OAuth "error_uri" parameter.(Inherited from BaseValidatingContext<TOptions>.)

System_CAPS_pubpropertyHasError

True if application code has called any of the SetError methods on this context.(Inherited from BaseValidatingContext<TOptions>.)

System_CAPS_pubpropertyIsValidated

True if application code has called any of the Validate methods on this context.(Inherited from BaseValidatingContext<TOptions>.)

System_CAPS_pubpropertyOptions

(Inherited from BaseContext<TOptions>.)

System_CAPS_pubpropertyOwinContext

(Inherited from BaseContext<TOptions>.)

System_CAPS_pubpropertyRedirectUri

Gets the client redirect URI

System_CAPS_pubpropertyRequest

(Inherited from BaseContext<TOptions>.)

System_CAPS_pubpropertyResponse

(Inherited from BaseContext<TOptions>.)

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_pubmethodRejected()

Marks this context as not validated by the application. IsValidated and HasError become false as a result of calling.(Inherited from BaseValidatingContext<TOptions>.)

System_CAPS_pubmethodSetError(String^)

Marks this context as not validated by the application and assigns various error information properties. HasError becomes true and IsValidated becomes false as a result of calling.(Inherited from BaseValidatingContext<TOptions>.)

System_CAPS_pubmethodSetError(String^, String^)

Marks this context as not validated by the application and assigns various error information properties. HasError becomes true and IsValidated becomes false as a result of calling.(Inherited from BaseValidatingContext<TOptions>.)

System_CAPS_pubmethodSetError(String^, String^, String^)

Marks this context as not validated by the application and assigns various error information properties. HasError becomes true and IsValidated becomes false as a result of calling.(Inherited from BaseValidatingContext<TOptions>.)

System_CAPS_pubmethodToString()

(Inherited from Object.)

System_CAPS_pubmethodValidated()

Marks this context as validated by the application. IsValidated becomes true and HasError becomes false as a result of calling.(Overrides BaseValidatingContext<TOptions>::Validated().)

System_CAPS_pubmethodValidated(String^)

Checks the redirect URI to determine whether it equals RedirectUri.

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: