Interface ISAZReader
Used to implement a class that reads a SAZ file
Namespace: Fiddler
Assembly: FiddlerCore.dll
Syntax
public interface ISAZReader
Properties
Comment
Gets the session archive metadata (version)
Declaration
string Comment { get; }
Property Value
System.
|
EncryptionMethod
Gets the encryption algorithm used - e.g. PKZip, AES
Declaration
string EncryptionMethod { get; }
Property Value
System.
|
EncryptionStrength
Gets the encryption algorithm key size - e.g. 128, 256
Declaration
string EncryptionStrength { get; }
Property Value
System.
|
Filename
Gets the session archive file name
Declaration
string Filename { get; }
Property Value
System.
|
Version
Gets the version of the session archive - e.g. 1, 2
Declaration
string Version { get; }
Property Value
System.
|
Methods
Close()
Releases the session archive file
Declaration
void Close()
GetFileBytes(String)
Gets a session data file from the session archive
Declaration
byte[] GetFileBytes(string sFilename)
Parameters
System. The full path to the file |
Returns
System. A byte array with the file data |
GetFileStream(String)
Gets a session data file from the session archive
Declaration
Stream GetFileStream(string sFilename)
Parameters
System. The full path to the file |
Returns
System. A stream with the file data |
GetRequestFileList()
Gets a list of all session request files in the session archive
Declaration
string[] GetRequestFileList()
Returns
System.
|