Class HTTPHeaders
Base class for RequestHeaders and ResponseHeaders
Inheritance
Namespace: Fiddler
Assembly: FiddlerCore.dll
Syntax
public abstract class HTTPHeaders : Object
Constructors
HTTPHeaders()
Declaration
protected HTTPHeaders()
Fields
_HeaderEncoding
Text encoding to be used when converting this header object to/from a byte array
Declaration
protected Encoding _HeaderEncoding
Field Value
System.
|
HTTPVersion
HTTP version (e.g. HTTP/1.1)
Declaration
[CodeDescription("HTTP version (e.g. HTTP/1.1).")]
public string HTTPVersion
Field Value
System.
|
storage
Storage for individual HTTPHeaderItems in this header collection NB: Using a list is important, as order can matter
Declaration
protected List<HTTPHeaderItem> storage
Field Value
System.
|
Properties
Item[Int32]
Indexer property. Returns HTTPHeaderItem by index. Throws Exception if index out of bounds
Declaration
[CodeDescription("Indexer property. Returns HTTPHeaderItem by index.")]
public HTTPHeaderItem this[int iHeaderNumber] { get; set; }
Parameters
System.
|
Property Value
Item[String]
Gets or sets the value of a header. In the case of Gets, the value of the first header of that name is returned.
If the header does not exist, returns null.
In the case of Sets, the value of the first header of that name is updated.
If the header does not exist, it is added.
Declaration
[CodeDescription("Indexer property. Gets or sets the value of a header. In the case of Gets, the value of the FIRST header of that name is returned.\nIf the header does not exist, returns null.\nIn the case of Sets, the value of the FIRST header of that name is updated.\nIf the header does not exist, it is added.")]
public string this[string HeaderName] { get; set; }
Parameters
System.
|
Property Value
System.
|
Methods
Add(String, String)
Adds a new header containing the specified name and value.
Declaration
[CodeDescription("Add a new header containing the specified name and value.")]
public HTTPHeaderItem Add(string sHeaderName, string sValue)
Parameters
System. Name of the header to add. |
System. Value of the header. |
Returns
HTTPHeader Returns the newly-created HTTPHeaderItem. |
Add(String, String, Boolean)
Adds a new header containing the specified name and value and sensitive flag.
Declaration
[CodeDescription("Add a new header containing the specified name and value.")]
public HTTPHeaderItem Add(string sHeaderName, string sValue, bool bSensitive)
Parameters
System. Name of the header to add. |
System. Value of the header. |
System. HTTP2 specific - does the header contain sensitive information. |
Returns
HTTPHeader Returns the newly-created HTTPHeaderItem. |
AddPseudoHeader(String, String)
Adds a new pseudo header containing the specified name and value. If header already was added, it will replace the previous value
Declaration
public HTTPHeaderItem AddPseudoHeader(string sHeaderName, string sValue)
Parameters
System. Name of the pseudo header to add. |
System. Value of the pseudo header. |
Returns
HTTPHeader Returns the newly-created HTTPHeaderItem. |
AddRange(IEnumerable<HTTPHeaderItem>)
Adds one or more headers
Declaration
public void AddRange(IEnumerable<HTTPHeaderItem> collHIs)
Parameters
System.
|
AllValues(String)
Returns all values of the named header in a single string, delimited by commas
Declaration
public string AllValues(string sHeaderName)
Parameters
System. Header |
Returns
System. Each, Header's, Value |
AssignFromString(String)
Parses a string and assigns the headers parsed to this object
Declaration
public abstract bool AssignFromString(string sHeaders)
Parameters
System. The header string |
Returns
System. TRUE if the operation succeeded, false otherwise |
ByteCount()
Get byte count of this HTTP header instance when exported to a HTTP/1.1 headers string
Declaration
public virtual int ByteCount()
Returns
System. Byte Count |
Count()
Number of HTTP headers
Declaration
[CodeDescription("Returns an integer representing the number of headers.")]
public int Count()
Returns
System. Number of HTTP headers |
CountOf(String)
Returns the count of instances of the named header
Declaration
public int CountOf(string sHeaderName)
Parameters
System. Header name |
Returns
System. Count of instances of the named header |
EscapeHeader(String, Boolean)
Escape HTTP2 header names/values
Declaration
protected static string EscapeHeader(string header, bool isName = false)
Parameters
System. The header name or value |
System. True if escaping header name |
Returns
System. Escaped name or value |
Exists(String)
Determines if the Headers collection contains a header of the specified name, with any value.
Declaration
[CodeDescription("Returns true if the Headers collection contains a header of the specified (case-insensitive) name.")]
public bool Exists(string sHeaderName)
Parameters
System. The name of the header to check. (case insensitive) |
Returns
System. True, if the header exists. |
ExistsAndContains(String, String)
Determines if the Headers collection contains one or more headers of the specified name, and sHeaderValue is part of one of those Headers' value.
Declaration
[CodeDescription("Returns true if the collection contains a header of the specified (case-insensitive) name, and sHeaderValue (case-insensitive) is part of the Header's value.")]
public bool ExistsAndContains(string sHeaderName, string sHeaderValue)
Parameters
System. The name of the header to check. (case insensitive) |
System. The partial header value. (case insensitive) |
Returns
System. True if the header is found and the value case-insensitively contains the parameter |
ExistsAndEquals(String, String, Boolean)
Determines if the Headers collection contains a header of the specified name, and sHeaderValue=Header's value. Similar to a case-insensitive version of: headers[sHeaderName]==sHeaderValue, although it checks all instances of the named header.
Declaration
[CodeDescription("Returns true if the collection contains a header of the specified (case-insensitive) name, with value sHeaderValue (case-insensitive).")]
public bool ExistsAndEquals(string sHeaderName, string sHeaderValue, bool isUrl = false)
Parameters
System. The name of the header to check. (case insensitive) |
System. The full header value. (case insensitive) |
System. If true, compare the header values as URLs and if false - do a case insensitive string comparison |
Returns
System. True if the header is found and the value case-insensitively matches the parameter |
ExistsAny(IEnumerable<String>)
Determines if the Headers collection contains any header from the specified list, with any value.
Declaration
[CodeDescription("Returns true if the Headers collection contains a header of the specified (case-insensitive) name.")]
public bool ExistsAny(IEnumerable<string> sHeaderNames)
Parameters
System. list of headers |
Returns
System. True, if any named header exists. |
FilterByHeaderName(String[])
Filter all header items that have different header name from the given
Declaration
public void FilterByHeaderName(string[] headerNames)
Parameters
System.
|
FindAll(String)
Returns all instances of the named header
Declaration
public List<HTTPHeaderItem> FindAll(string sHeaderName)
Parameters
System. Header name |
Returns
System. List of instances of the named header |
FreeReaderLock()
Frrees the Reader Lock. Executed after you finish enumerating the Storage collection.
Declaration
protected void FreeReaderLock()
FreeWriterLock()
If you get the Writer lock, Free it ASAP or you're going to hang or deadlock the Session
Declaration
protected void FreeWriterLock()
FromHeadersFrame(BasePipe, ArraySegment<Byte>, UInt32, Boolean)
Read a data stream and extract HTTP/2 header frame(s) from it
Declaration
protected static List<HeaderField> FromHeadersFrame(BasePipe pipe, ArraySegment<byte> dataStream, uint streamId, bool useNewDecoder = false)
Parameters
Base The data pipe (used for HTTP2 settings and decoding header data) |
System. Array containing the data (request/response) |
System. The HTTP/2 stream ID |
System. If true, a new HPACK decoder instance will be used (to prevent polluting the default decoder table). |
Returns
System. Array of "key: value" string objects |
GetEnumerator()
Enumerator for HTTPHeader storage collection
Declaration
public IEnumerator GetEnumerator()
Returns
System. Enumerator |
GetReaderLock()
Get the Reader Lock if you plan to enumerate the Storage collection.
Declaration
protected void GetReaderLock()
GetTokenValue(String, String)
Returns the Value from a token in the header. Correctly handles double-quoted strings. Requires semicolon for delimiting tokens Limitation: FAILS if semicolon is in token's value, even if quoted. FAILS in the case of crazy headers, e.g. Header: Blah="SoughtToken=Blah" SoughtToken=MissedMe
We really need a "proper" header parser
Declaration
[CodeDescription("Returns a string representing the value of the named token within the named header.")]
public string GetTokenValue(string sHeaderName, string sTokenName)
Parameters
System. Name of the header |
System. Name of the token |
Returns
System. Value of the token if present; otherwise, null |
GetWriterLock()
Get the Writer Lock if you plan to change the Storage collection. NB: You only need this lock if you plan to change the collection itself; you can party on the items in the collection if you like without locking.
Declaration
protected void GetWriterLock()
Remove(HTTPHeaderItem)
Removes a HTTPHeader item from the collection
Declaration
public void Remove(HTTPHeaderItem oRemove)
Parameters
HTTPHeader The HTTPHeader item to be removed |
Remove(String)
Removes all headers from the header collection which have the specified name.
Declaration
[CodeDescription("Removes ALL headers from the header collection which have the specified (case-insensitive) name.")]
public void Remove(string sHeaderName)
Parameters
System. The name of the header to remove. (case insensitive) |
RemoveAll()
Removes all HTTPHeader items from the collection
Declaration
public void RemoveAll()
RemoveRange(String[])
Removes all headers from the header collection which have the specified names.
Declaration
[CodeDescription("Removes ALL headers from the header collection which have the specified (case-insensitive) names.")]
public void RemoveRange(string[] arrToRemove)
Parameters
System. Array of names of headers to remove. (case insensitive) |
RenameHeaderItems(String, String)
Renames all headers in the header collection which have the specified name.
Declaration
[CodeDescription("Renames ALL headers in the header collection which have the specified (case-insensitive) name.")]
public bool RenameHeaderItems(string sOldHeaderName, string sNewHeaderName)
Parameters
System. The name of the header to rename. (case insensitive) |
System. The new name for the header. |
Returns
System. True if one or more replacements were made. |
SortAscByKeyAndValue()
Sort all header items in ascending order by key and then by value
Declaration
public void SortAscByKeyAndValue()
ToArray()
Copies the Headers to a new array. Prefer this method over the enumerator to avoid cross-thread problems.
Declaration
public HTTPHeaderItem[] ToArray()
Returns
HTTPHeader An array containing HTTPHeaderItems |