标签:http io ar for strong sp art c on
private string url;
// Use this for initialization
void Start () {
HttpWebRequest myHttpWebRequest = (HttpWebRequest)HttpWebRequest.Create("这里填写Url");
myHttpWebRequest.AllowAutoRedirect = false;
HttpWebResponse myHttpWebResponse = (HttpWebResponse)myHttpWebRequest.GetResponse();
url = myHttpWebResponse.Headers.Get("Location");
}
一般运用于网络运营商重定向地址。
万恶的网络运营商。
【Unity3D自学记录】Unity3D之Url地址重定向(C#)
标签:http io ar for strong sp art c on
原文地址:http://blog.csdn.net/daijinghui512/article/details/39891307