ErrorPageModel.Headers Property

Gets or sets the response headers.

Namespace:  Microsoft.Owin.Diagnostics.Views
Assembly:  Microsoft.Owin.Diagnostics (in Microsoft.Owin.Diagnostics.dll)

Syntax

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

value = instance.Headers

instance.Headers = value
public IDictionary<string, string[]> Headers { get; set; }
public:
property IDictionary<String^, array<String^>^>^ Headers {
    IDictionary<String^, array<String^>^>^ get ();
    void set (IDictionary<String^, array<String^>^>^ value);
}
member Headers : IDictionary<string, string[]> with get, set
function get Headers () : IDictionary<String, String[]>
function set Headers (value : IDictionary<String, String[]>)

Property Value

Type: System.Collections.Generic.IDictionary<String, String[]>
A IDictionary<TKey, TValue> object that represents the response headers.

See Also

Reference

ErrorPageModel Class

Microsoft.Owin.Diagnostics.Views Namespace