Table of Contents

Class FacebookOAuthResult

Namespace
Facebook
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

string

Code

Gets the code used to exchange with Facebook to retrieve access token.

public virtual string Code { get; }

Property Value

string

Error

Error that happens when using OAuth2 protocol.

public virtual string Error { get; }

Property Value

string

Remarks

ErrorDescription

Gets the long error description for failed authentication if an error occurred.

public virtual string ErrorDescription { get; }

Property Value

string

ErrorReason

Gets the short error reason for failed authentication if an error occurred.

public virtual string ErrorReason { get; }

Property Value

string

Expires

Gets the DateTime when the access token will expire.

public virtual DateTime Expires { get; }

Property Value

DateTime

IsSuccess

Gets a value indicating whether access token or code was successfully retrieved.

public virtual bool IsSuccess { get; }

Property Value

bool

State

Gets an opaque state used to maintain application state between the request and callback.

public virtual string State { get; }

Property Value

string