Class FacebookOAuthResult
- Namespace
- Assembly
- Facebook.dll
Represents the authentication result of Facebook.
public class FacebookOAuthResult
- Inheritance
-
FacebookOAuthResult
- Inherited Members
Constructors
FacebookOAuthResult()
Initializes a new instance of the FacebookOAuthResult class.
protected FacebookOAuthResult()
Properties
AccessToken
Gets the access token.
public virtual string AccessToken { get; }
Property Value
Code
Gets the code used to exchange with Facebook to retrieve access token.
public virtual string Code { get; }
Property Value
Error
Error that happens when using OAuth2 protocol.
public virtual string Error { get; }
Property Value
Remarks
ErrorDescription
Gets the long error description for failed authentication if an error occurred.
public virtual string ErrorDescription { get; }
Property Value
ErrorReason
Gets the short error reason for failed authentication if an error occurred.
public virtual string ErrorReason { get; }
Property Value
Expires
Gets the DateTime when the access token will expire.
public virtual DateTime Expires { get; }
Property Value
IsSuccess
Gets a value indicating whether access token or code was successfully retrieved.
public virtual bool IsSuccess { get; }
Property Value
State
Gets an opaque state used to maintain application state between the request and callback.
public virtual string State { get; }