Show / Hide Table of Contents

Class FbResult

Facebook API callback result representation.

Inheritance
System.Object
FbResult
FbGetUserResult
FbGraphResult
FbLoginResult
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: StansAssets.Facebook
Assembly: cs.temp.dll.dll
Syntax
public abstract class FbResult

Properties

Error

Error message. Only available when State is ApiError

Declaration
public string Error { get; }
Property Value
Type Description
System.String

IsFailed

Gets a value indicating whether this result is failed.

Declaration
public bool IsFailed { get; }
Property Value
Type Description
System.Boolean

true if is failed; otherwise, false.

IsSucceeded

Gets a value indicating whether this result is succeeded.

Declaration
public bool IsSucceeded { get; }
Property Value
Type Description
System.Boolean

true if is succeeded; otherwise, false.

RawResult

Gets the raw result string.

Declaration
public string RawResult { get; }
Property Value
Type Description
System.String

State

The result state.

Declaration
public FbResultState State { get; }
Property Value
Type Description
FbResultState

Methods

OnDataReady(IDictionary)

Declaration
protected abstract void OnDataReady(IDictionary json)
Parameters
Type Name Description
IDictionary json
In This Article
Back to top Generated by DocFX