Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


responseHeaders

Dictionary of headers returned by the request.
Read time 1 minuteLast updated 5 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.UnityWebRequestWWWModule
Warning
Deprecated. Use UnityWebRequest, a fully featured replacement which is more efficient and has additional features
public Dictionary<string, string> responseHeaders { get; }

Remarks

using UnityEngine;using System.Collections;using System.Collections.Generic;public class ExampleClass : MonoBehaviour{ public string url = "https://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); } } } }}
Note when using these code examples you will want to set the WWW Security Emulation Host URL to "https://unity3d.com" in Editor Settings. Failure to do this may give you security exceptions.