OperationContext.UserHeaders Property

Windows Runtime Azure Storage Client Library

Gets or sets additional headers on the request, for example, for proxy or logging information.

Namespace: Microsoft.WindowsAzure.Storage
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Usage

Visual Basic
Dim instance As OperationContext
Dim value As IDictionary(Of String, String)

value = instance.UserHeaders

instance.UserHeaders = value

Syntax

Visual Basic
Public Property UserHeaders As IDictionary(Of String, String)
C#
public IDictionary<string,string> UserHeaders { get; set; }
C++
public:
property IDictionary<String^, String^>^ UserHeaders {
	IDictionary<String^, String^>^ get ();
	void set (IDictionary<String^, String^>^ value);
}
J#
/** @property */
/** @attribute CompilerGeneratedAttribute() */ 
public IDictionary<String,String> get_UserHeaders ()

/** @property */
/** @attribute CompilerGeneratedAttribute() */ 
public void set_UserHeaders (IDictionary<String,String> value)
JScript
CompilerGeneratedAttribute 
public function get UserHeaders () : IDictionary<String,String>

CompilerGeneratedAttribute 
public function set UserHeaders (value : IDictionary<String,String>)

Property Value

A IDictionary object containing additional header information.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

Target Platforms

See Also