OAuthValidateClientAuthenticationContext.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.(Inherited from BaseValidatingContext<TOptions>.)

System_CAPS_pubmethod Validated(String)

Sets the client id and marks the context as validated by the application.

See Also

OAuthValidateClientAuthenticationContext Class
Microsoft.Owin.Security.OAuth Namespace

Return to top

OAuthValidateClientAuthenticationContext.Validated Method (String)

Sets the client id and marks the context as validated by the application.

Syntax

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

Parameters

Return Value

Type: System.Boolean

Returns Boolean.

Return to top