HTTPResponseHeaders Class |
Namespace: Fiddler
The HTTPResponseHeaders type exposes the following members.
Name | Description | |
---|---|---|
HTTPResponseHeaders |
Constructor for HTTP Response headers object
| |
HTTPResponseHeaders(Encoding) |
Constructor for HTTP Response headers object
| |
HTTPResponseHeaders(Int32, String) | Initializes a new instance of the HTTPResponseHeaders class | |
HTTPResponseHeaders(Int32, String, String) | Initializes a new instance of the HTTPResponseHeaders class |
Name | Description | |
---|---|---|
Add |
Adds a new header containing the specified name and value.
(Inherited from HTTPHeaders.) | |
AddRange |
Adds one or more headers
(Inherited from HTTPHeaders.) | |
AllValues |
Returns all values of the named header in a single string, delimited by commas
(Inherited from HTTPHeaders.) | |
AssignFromString |
Parses a string and assigns the headers parsed to this object
(Overrides HTTPHeadersAssignFromString(String).) | |
ByteCount | (Overrides HTTPHeadersByteCount.) | |
Clone |
Clone this HTTPResponseHeaders object and return the result cast to an Object
| |
Count |
Number of HTTP headers
(Inherited from HTTPHeaders.) | |
CountOf |
Returns the count of instances of the named header
(Inherited from HTTPHeaders.) | |
Equals | (Inherited from Object.) | |
Exists |
Determines if the Headers collection contains a header of the specified name, with any value.
(Inherited from HTTPHeaders.) | |
ExistsAndContains |
Determines if the Headers collection contains one or more headers of the specified name, and
sHeaderValue is part of one of those Headers' value.
(Inherited from HTTPHeaders.) | |
ExistsAndEquals |
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.
(Inherited from HTTPHeaders.) | |
ExistsAny |
Determines if the Headers collection contains any header from the specified list, with any value.
(Inherited from HTTPHeaders.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
FindAll |
Returns all instances of the named header
(Inherited from HTTPHeaders.) | |
FreeReaderLock | (Inherited from HTTPHeaders.) | |
FreeWriterLock |
If you get the Writer lock, Free it ASAP or you're going to hang or deadlock the Session
(Inherited from HTTPHeaders.) | |
GetEnumerator |
Protect your enumeration using GetReaderLock
| |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetReaderLock |
Get the Reader Lock if you plan to enumerate the Storage collection.
(Inherited from HTTPHeaders.) | |
GetTokenValue |
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
(Inherited from HTTPHeaders.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
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.
(Inherited from HTTPHeaders.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
Remove(String) |
Removes all headers from the header collection which have the specified name.
(Inherited from HTTPHeaders.) | |
Remove(HTTPHeaderItem) |
Removes a HTTPHeader item from the collection
(Inherited from HTTPHeaders.) | |
RemoveAll |
Removes all HTTPHeader items from the collection
(Inherited from HTTPHeaders.) | |
RemoveRange |
Removes all headers from the header collection which have the specified names.
(Inherited from HTTPHeaders.) | |
RenameHeaderItems |
Renames all headers in the header collection which have the specified name.
(Inherited from HTTPHeaders.) | |
SetStatus |
Update the response status code and text
| |
ToArray |
Copies the Headers to a new array.
Prefer this method over the enumerator to avoid cross-thread problems.
(Inherited from HTTPHeaders.) | |
ToByteArray |
Returns a byte array representing the HTTP headers.
| |
ToString |
Returns a string containing the http headers
(Overrides ObjectToString.) | |
ToString(Boolean, Boolean) |
Returns a string containing http headers
|
Name | Description | |
---|---|---|
_HeaderEncoding |
Text encoding to be used when converting this header object to/from a byte array
(Inherited from HTTPHeaders.) | |
HTTPResponseCode |
Status code from HTTP Response. If setting, also set HTTPResponseStatus too!
| |
HTTPResponseStatus |
Code AND Description of Response Status (e.g. '200 OK').
| |
HTTPVersion |
HTTP version (e.g. HTTP/1.1)
(Inherited from HTTPHeaders.) | |
storage |
Storage for individual HTTPHeaderItems in this header collection
NB: Using a list is important, as order can matter
(Inherited from HTTPHeaders.) |
Name | Description | |
---|---|---|
ItemInt32 |
Indexer property. Returns HTTPHeaderItem by index. Throws Exception if index out of bounds
(Inherited from HTTPHeaders.) | |
ItemString |
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.
(Inherited from HTTPHeaders.) | |
StatusDescription |
Gets or sets the text associated with the response code (e.g. "OK", "Not Found", etc)
|