HTTPHeaderParseWarnings Enumeration |
Flags that indicate what problems, if any, were encountered in parsing HTTP headers
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax [FlagsAttribute]
public enum HTTPHeaderParseWarnings
<FlagsAttribute>
Public Enumeration HTTPHeaderParseWarnings
[FlagsAttribute]
public enum class HTTPHeaderParseWarnings
Members
| Member name | Value | Description |
---|
| None | 0 |
There were no problems parsing the HTTP headers
|
| EndedWithLFLF | 1 |
The HTTP headers ended incorrectly with \n\n
|
| EndedWithLFCRLF | 2 |
The HTTP headers ended incorrectly with \n\r\n
|
| Malformed | 4 |
The HTTP headers were malformed.
|
See Also