Facebook.FacebookApi.BeginPost C# (CSharp) Method

BeginPost() public method

Begins to make a Facebook API POST request asynchronously. If relativePath is null, args should contain ids or another facebook blessed approach to mean it is a batch call.
pre-request evaluation is failed.
public BeginPost ( [ relativePath, string>.[ args, [ cb, [ state ) : IAsyncResult
relativePath [ The path for the call, e.g. /username
args string>.[ A dictionary of key/value pairs that will get passed as query arguments. These determine what will get set in the graph API.
cb [ A callback to call upon operation complete.
state [ user state to pass to the callback.
return IAsyncResult
        public IAsyncResult BeginPost([CanBeNull] string relativePath,
            [CanBeNull] Dictionary<string, string> args,
            [CanBeNull] AsyncCallback cb,
            [CanBeNull] object state)
        {
            return BeginCall(relativePath, HttpVerb.Post, args, cb, state);
        }