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

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public var responseHeaders: Dictionary<string,string>;
public Dictionary<string,string> responseHeaders;

Description

Dictionary of headers returned by the request.

#pragma strict

public var url = "http://unity3d.com";

function Start() { var www : WWW = new WWW (url); yield www; if (www.responseHeaders.Count > 0) { for (var entry in www.responseHeaders) { Debug.Log(entry.Value + "=" + entry.Key); } } }
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: