Facebook.FacebookApi.Delete C# (CSharp) Method

Delete() public method

Makes a Facebook API DELETE request.
an exception occurred during the call. is null.
public Delete ( [ relativePath ) : JsonObject
relativePath [ The path for the call, e.g. /username.
return JsonObject
        public JsonObject Delete([CanBeNull] string relativePath)
        {
            if (relativePath == null)
                throw Nre("relativePath");
            return Call(relativePath, HttpVerb.Delete, null);
        }

Same methods

FacebookApi::Delete ( [ relativePath, string>.[ args ) : JsonObject