UnityEngine.WWW.WWW C# (CSharp) Method

WWW() public method

Creates a WWW request with the given URL.

public WWW ( string url, byte postData ) : System
url string The url to download. Must be '%' escaped.
postData byte A byte array of data to be posted to the url.
return System
        public WWW(string url, byte[] postData)
        {
            this.InitWWW(url, postData, null);
        }

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, string>.Dictionary headers ) : System