Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

WebHeaderCollection::AddWithoutValidate Method (String^, String^)

 

Inserts a header into the collection without checking whether the header is on the restricted header list.

Namespace:   System.Net
Assembly:  System (in System.dll)

protected:
void AddWithoutValidate(
	String^ headerName,
	String^ headerValue
)

Parameters

headerName
Type: System::String^

The header to add to the collection.

headerValue
Type: System::String^

The content of the header.

Exception Condition
ArgumentException

headerName is null, Empty, or contains invalid characters.

-or-

headerValue contains invalid characters.

ArgumentOutOfRangeException

headerName is not null and the length of headerValue is too long (greater than 65,535 characters).

The AddWithoutValidate method adds a header to the collection without checking whether the header is on the restricted header list.

Notes to Inheritors:

Use the AddWithoutValidate method to add headers that are normally exposed through properties.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft