Delete
Creates a UnityWebRequest configured for HTTP DELETE.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Method
- Namespace: UnityEngine.Networking
- Assembly: UnityEngine.UnityWebRequestModule
Delete(string)
Creates a UnityWebRequest configured for HTTP .
DELETEpublic static UnityWebRequest Delete(string uri)
Parameters
The URI to which a request should be sent.
DELETEReturns
Type | Description |
|---|---|
| UnityWebRequest | A UnityWebRequest configured to send an HTTP |
Remarks
This method creates a UnityWebRequest, sets the verb to and sets the target URL to the string argument . It sets no custom flags or headers.
DELETEuriDelete(Uri)
Creates a UnityWebRequest configured for HTTP .
DELETEpublic static UnityWebRequest Delete(Uri uri)
Parameters
The URI to which a request should be sent.
DELETEReturns
Type | Description |
|---|---|
| UnityWebRequest | A UnityWebRequest configured to send an HTTP |
Remarks
This method creates a UnityWebRequest, sets the verb to and sets the target URL to the string argument . It sets no custom flags or headers.
DELETEuri