Facebook.FacebookApi.BeginGet C# (CSharp) Method

BeginGet() public method

Begins to makes a Facebook API GET request asynchronously.
is null. pre-request evaluation is failed.
public BeginGet ( [ relativePath, [ cb, [ state ) : IAsyncResult
relativePath [ The path for the call, e.g. /username
cb [ A callback to call upon operation complete.
state [ user state to pass to the callback.
return IAsyncResult
        public IAsyncResult BeginGet([NotNull] string relativePath, [CanBeNull] AsyncCallback cb, [CanBeNull] object state)
        {
            if (relativePath == null)
                throw Nre("relativePath");
            return BeginGet(relativePath, null, cb, state);
        }

Same methods

FacebookApi::BeginGet ( [ relativePath, string>.[ args, [ cb, [ state ) : IAsyncResult