Legacy Documentation: Version 2017.2 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

WWW.responseHeaders

public Dictionary<string,string> responseHeaders;

Description

Dictionary of headers returned by the request.

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

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.

Did you find this page useful? Please give it a rating: