Facebook.FacebookApi.BeginDelete C# (CSharp) Method

BeginDelete() public method

Begins to make a Facebook API DELETE request asynchronously.
is null. pre-request evaluation is failed.
public BeginDelete ( [ 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 BeginDelete([NotNull] string relativePath, [CanBeNull] AsyncCallback cb, [CanBeNull] object state)
        {
            if (relativePath == null)
                throw Nre("relativePath");
            return BeginCall(relativePath, HttpVerb.Delete, null, cb, state);
        }

Same methods

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