Version: 5.6
public Dictionary<string,string> headers ;

설명

(Read Only) Returns the correct request headers for posting the form using the WWW class.

This field only contains one header, /"Content-Type"/, which is set to the correct mime type for the form: "application/x-www-form-urlencoded" for normal forms and "multipart/form-data" for forms containing data added using AddBinaryData.

          WWWForm form = new WWWForm();
form.AddField( "name", "value" );
Hashtable headers = form.headers;
byte[] rawData = form.data;
string url = "www.myurl.com";

// Add a custom header to the request. // In this case a basic authentication to access a password protected resource. headers["Authorization"] = "Basic " + System.Convert.ToBase64String( System.Text.Encoding.ASCII.GetBytes("username:password"));

// Post a request to an URL with our custom headers WWW www = new WWW(url, rawData, headers); yield return www; //.. process results from WWW request here...