Version: 2017.3
public Dictionary<string,string> responseHeaders ;

説明

リクエストで返されるヘッダーの Dictionary

using UnityEngine;
using System.Collections;
using System.Collections.Generic;

public class ExampleClass : MonoBehaviour { public string url = "http://unity3d.com"; IEnumerator Start() { using (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 を設定したい場合は注意してください。これを忘れると、例外規定を与えられるかもしれません。