BaseValidatingContext<TOptions>.Error Property

 

The error argument provided when SetError was called on this context. This is eventually returned to the client app as the OAuth "error" parameter.

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

Syntax

public string Error { get; private set; }
public:
property String^ Error {
    String^ get();
    private: void set(String^ value);
}
member Error : string with get, private set
Public Property Error As String
    Get
    Private Set
End Property

Property Value

Type: System.String

Returns String.

See Also

BaseValidatingContext<TOptions> Class
Microsoft.Owin.Security.OAuth Namespace

Return to top