HttpResponse.Headers Property

Definition

Gets the collection of response headers.

public:
 property System::Collections::Specialized::NameValueCollection ^ Headers { System::Collections::Specialized::NameValueCollection ^ get(); };
public System.Collections.Specialized.NameValueCollection Headers { get; }
member this.Headers : System.Collections.Specialized.NameValueCollection
Public ReadOnly Property Headers As NameValueCollection

Property Value

A NameValueCollection of response headers.

Exceptions

The operation requires the integrated pipeline mode in IIS 7.0 and at least .NET Framework version 3.0.

Remarks

The Headers property is only supported with the IIS 7.0 integrated pipeline mode and at least the .NET Framework 3.0. When you try to access the Headers property and either of these two conditions is not met, a PlatformNotSupportedException is thrown.

Applies to

See also