Facebook.OAuthContext.EndAuthenticate C# (CSharp) Method

EndAuthenticate() public method

Completes async authentication operation started by the BeginAuthenticate method.
is null.
public EndAuthenticate ( IAsyncResult ar ) : void
ar IAsyncResult async state of the operation.
return void
        public void EndAuthenticate(IAsyncResult ar)
        {
            var data = TypedAsyncResult<FacebookApi.ResponseData>.End(ar, FacebookApi.ExConverter);
            ParseAuthResult(data.ContentType, data.Json);
        }