Connection.Headers Property

.NET Framework 4.5

Gets or sets the headers for the requests

Namespace:  Microsoft.AspNet.SignalR.Client
Assembly:  Microsoft.AspNet.SignalR.Client (in Microsoft.AspNet.SignalR.Client.dll)

Syntax

'Declaration
Public Property Headers As IDictionary(Of String, String)
    Get 
    Private Set
'Usage
Dim instance As Connection 
Dim value As IDictionary(Of String, String)

value = instance.Headers
public IDictionary<string, string> Headers { get; private set; }
public:
virtual property IDictionary<String^, String^>^ Headers {
    IDictionary<String^, String^>^ get () sealed;
    private: void set (IDictionary<String^, String^>^ value) sealed;
}
abstract Headers : IDictionary<string, string> with get, private set 
override Headers : IDictionary<string, string> with get, private set
final function get Headers () : IDictionary<String, String>
private final function set Headers (value : IDictionary<String, String>)

Property Value

Type: System.Collections.Generic.IDictionary<String, String>
The headers for the requests.

Implements

IConnection.Headers

See Also

Reference

Connection Class

Microsoft.AspNet.SignalR.Client Namespace