SessionItem Property (String, String) |
Indexer property into SESSION flags, REQUEST headers, and RESPONSE headers. e.g. oSession["Request", "Host"] returns string value for the Request host header. If null, returns String.Empty
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public string this[
string sCollection,
string sName
] { get; }
Public ReadOnly Default Property Item (
sCollection As String,
sName As String
) As String
Get
public:
property String^ default[String^ sCollection, String^ sName] {
String^ get (String^ sCollection, String^ sName);
}
Parameters
- sCollection
- Type: SystemString
SESSION, REQUEST or RESPONSE - sName
- Type: SystemString
The name of the flag or header
Return Value
Type:
StringString value or String.Empty
See Also