Method group is Obsolete

WWW.responseHeaders

Switch to Manual
Obsolete public Dictionary<string,string> responseHeaders ;

Description

Dictionary of headers returned by the request.

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); } } } } }

Note when using these code examples you will want to set the WWW Security Emulation Host URL to "http://unity3d.com" in Editor Settings. Failure to do this may give you security exceptions.