Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


method

Defines the HTTP verb used by this UnityWebRequest, such as GET or POST.
Read time 1 minuteLast updated 6 days ago

Definition

public string method { get; set; }

Remarks

This property may be set to any non-zero-length alphabetic string, and will be used verbatim. Therefore, this property can be employed to set the UnityWebRequest to transmit any custom HTTP verb required by an application.
This property cannot be changed after calling UnityWebRequest.Send.
Note: This method will always return strings in UPPERCASE. When setting the verb, the input value will automatically be converted to UPPERCASE.
Default value:
GET
.