Enum AssetDownloader.HttpRequestMethod
Represents the HTTP request methods supported by CreateWebRequest(string, HttpRequestMethod, string, int).
Namespace: TriLibCore
Assembly: Assembly-CSharp.dll
Syntax
public enum AssetDownloader.HttpRequestMethod
Fields
| Name | Description |
|---|---|
| Delete | The HTTP DELETE method, used to delete the specified resource. |
| Get | The HTTP GET method, used to request data from a specified resource. |
| Head | The HTTP HEAD method, used to request only the headers from the server for a resource. |
| Post | The HTTP POST method, used to submit data to be processed to a specified resource. |
| Put | The HTTP PUT method, used to upload or replace a resource on the server. |