Share via


OAuthValidateClientRedirectUriContext.Validated Method

 

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

Overload List

Name Description
System_CAPS_pubmethod Validated()

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_pubmethod Validated(String)

Checks the redirect URI to determine whether it equals RedirectUri.

See Also

OAuthValidateClientRedirectUriContext Class
Microsoft.Owin.Security.OAuth Namespace

Return to top

OAuthValidateClientRedirectUriContext.Validated Method ()

Marks this context as validated by the application. IsValidated becomes true and HasError becomes false as a result of calling.

Syntax

public override bool Validated()
public:
virtual bool Validated() override
override Validated : unit -> bool
Public Overrides Function Validated As Boolean

Return Value

Type: System.Boolean

Returns Boolean.

Return to top

OAuthValidateClientRedirectUriContext.Validated Method (String)

Checks the redirect URI to determine whether it equals RedirectUri.

Syntax

public bool Validated(
    string redirectUri
)
public:
bool Validated(
    String^ redirectUri
)
member Validated : 
        redirectUri:string -> bool
Public Function Validated (
    redirectUri As String
) As Boolean

Parameters

Return Value

Type: System.Boolean

Returns Boolean.

Return to top