OAuthValidateClientAuthenticationContext.Validated Method
Namespace: Microsoft.Owin.Security.OAuth
Assembly: Microsoft.Owin.Security.OAuth (in Microsoft.Owin.Security.OAuth.dll)
Overload List
Name | Description | |
---|---|---|
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>.) |
|
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
- clientId
Type: System.String
Return Value
Type: System.Boolean
Returns Boolean.
Return to top