.NET Framework Class Library
HttpWebRequestElement.UseUnsafeHeaderParsing Property

Note: This property is new in the .NET Framework version 2.0.

Setting this property ignores validation errors that occur during HTTP parsing.

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

Syntax

Visual Basic (Declaration)
Public Property UseUnsafeHeaderParsing As Boolean
Visual Basic (Usage)
Dim instance As HttpWebRequestElement
Dim value As Boolean

value = instance.UseUnsafeHeaderParsing

instance.UseUnsafeHeaderParsing = value
C#
public bool UseUnsafeHeaderParsing { get; set; }
C++
public:
property bool UseUnsafeHeaderParsing {
    bool get ();
    void set (bool value);
}
J#
/** @property */
public boolean get_UseUnsafeHeaderParsing ()

/** @property */
public void set_UseUnsafeHeaderParsing (boolean value)
JScript
public function get UseUnsafeHeaderParsing () : boolean

public function set UseUnsafeHeaderParsing (value : boolean)

Property Value

Boolean that indicates whether this property has been set.
Remarks

When this property is set to false, the following validations are performed during HTTP parsing:

  • In end-of-line code, use CRLF; using CR or LF alone is not allowed.

  • Headers names should not have spaces in them.

  • If multiple status lines exist, all additional status lines are treated as malformed header name/value pairs.

  • The status line must have a status description, in addition to a status code.

  • Header names cannot have non-ASCII chars in them. This validation is performed whether this property is set to true or false.

When a protocol violation occurs, a WebException exception is thrown with the status set to ServerProtocolViolation. If the UseUnsafeHeaderParsing property is set to true, validation errors are ignored.

Setting this property to true has security implications, so it should only be done if backward compatibility with a server is required.

Platforms

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

Version Information

.NET Framework

Supported in: 2.0
See Also

Tags :


Page view tracker