Facebook.FacebookAsyncResult.FacebookAsyncResult C# (CSharp) Method

FacebookAsyncResult() public method

Initializes a new instance of the FacebookAsyncResult class.
public FacebookAsyncResult ( object result, object asyncState, System asyncWaitHandle, bool completedSynchronously, bool isCompleted, FacebookApiException error ) : System
result object The result.
asyncState object State of the async.
asyncWaitHandle System The async wait handle.
completedSynchronously bool if set to true [completed synchronously].
isCompleted bool if set to true [is completed].
error FacebookApiException The error.
return System
        public FacebookAsyncResult(
            object result,
            object asyncState,
            System.Threading.WaitHandle asyncWaitHandle,
            bool completedSynchronously,
            bool isCompleted,
            FacebookApiException error)
        {
            this.result = result;
            this.asyncState = asyncState;
            this.asyncWaitHandle = asyncWaitHandle;
            this.completedSynchronously = completedSynchronously;
            this.isCompleted = isCompleted;
            this.error = error;
        }
FacebookAsyncResult