UnityEngine.WWW.WWW C# (CSharp) Method

WWW() public method

Creates a WWW request with the given URL.

public WWW ( string url, WWWForm form ) : System
url string The url to download. Must be '%' escaped.
form WWWForm A WWWForm instance containing the form data to post.
return System
        public WWW(string url, WWWForm form)
        {
            string[] headers = FlattenedHeadersFrom(form.headers);
            if (this.enforceWebSecurityRestrictions())
            {
                CheckSecurityOnHeaders(headers);
            }
            this.InitWWW(url, form.data, headers);
        }

Same methods

WWW::WWW ( string url ) : System
WWW::WWW ( string url, Hash128 hash, uint crc ) : System
WWW::WWW ( string url, byte postData ) : System
WWW::WWW ( string url, byte postData, string>.Dictionary headers ) : System