BeardedManStudios.Network.HTTP.Delete C# (CSharp) Method

Delete() public method

Delete a response to the HTTP
public Delete ( Action callback ) : void
callback Action
return void
		public void Delete(Action<object> callback)
		{
			requestType = RequestType.Delete;
			Send(callback);
		}