リクエストで返されるヘッダーの Dictionary
#pragma strict
public var url = "http://unity3d.com";
function Start() { var www : WWW = new WWW (url); yield www; if (www.responseHeaders.Count > 0) { for (var entry in www.responseHeaders) { Debug.Log(entry.Value + "=" + entry.Key); } } }
using UnityEngine; using System.Collections; using System.Collections.Generic;
public class test : MonoBehaviour { public string url = "http://unity3d.com"; IEnumerator Start() { WWW www = new WWW(url); yield return www;
if(www.responseHeaders.Count > 0) { foreach(KeyValuePair<string, string> entry in www.responseHeaders) { Debug.Log(entry.Value + "=" + entry.Key); } } } }
これらのコード例を使用しているとき、エディター設定で http://unity3d.com に WWW Security Emulation. Host URL を設定したい場合は注意してください。これを忘れると、例外規定を与えられるかもしれません。