ClassHTTPHeaderItem
Class
Represents a single HTTP header
Definition
Namespace:Fiddler
Assembly:FiddlerCore.dll
Syntax:
cs-api-definition
public class HTTPHeaderItem : ICloneable
Inheritance: objectHTTPHeaderItem
Implements:
Inherited Members
Constructors
HTTPHeaderItem(string, string)
Creates a new HTTP Header item. WARNING: Doesn't do any trimming or validation on the name.
HTTPHeaderItem(string, string, bool)
Creates a new HTTP Header item. WARNING: Doesn't do any trimming or validation on the name.
Fields
Name
The name of the HTTP header
Declaration
cs-api-definition
[CodeDescription("String name of the HTTP header.")]
public string Name
Field Value
Properties
Methods
Clone()
Clones a single HTTP header and returns the clone cast to an object
Declaration
cs-api-definition
public object Clone()
Returns
HTTPHeader Name: Value pair, cast to an object
Implements
ToString()
Return a string of the form "NAME: VALUE"
Declaration
cs-api-definition
public override string ToString()
Returns
"NAME: VALUE" Header string
Overrides