Legacy Documentation: Version 5.0
Language: English
  • C#
  • JS

Script language

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

WWW.responseHeaders

Switch to Manual
public var responseHeaders: Dictionary<string,string>;

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

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.