Version: 2018.1
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 を設定したい場合は注意してください。これを忘れると、例外規定を与えられるかもしれません。

Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961