UnityEngine.WWW.WWW C# (CSharp) Method

WWW() public method

public WWW ( string url, byte postData, string>.Dictionary headers ) : System
url string
postData byte
headers string>.Dictionary
return System
        public WWW(string url, byte[] postData, Dictionary<string, string> headers)
        {
            string[] strArray = FlattenedHeadersFrom(headers);
            if (this.enforceWebSecurityRestrictions())
            {
                CheckSecurityOnHeaders(strArray);
            }
            this.InitWWW(url, postData, strArray);
        }

Same methods

WWW::WWW ( string url ) : System
WWW::WWW ( string url, Hash128 hash, uint crc ) : System
WWW::WWW ( string url, WWWForm form ) : System
WWW::WWW ( string url, byte postData ) : System