Interface
ISAZReader

Used to implement a class that reads a SAZ file

Definition

Namespace:Fiddler

Assembly:FiddlerCore.dll

Syntax:

cs-api-definition
public interface ISAZReader

Properties

Comment

Gets the session archive metadata (version)

Declaration

cs-api-definition
string Comment { get; }

Property Value

string

EncryptionMethod

Gets the encryption algorithm used - e.g. PKZip, AES

Declaration

cs-api-definition
string EncryptionMethod { get; }

Property Value

string

EncryptionStrength

Gets the encryption algorithm key size - e.g. 128, 256

Declaration

cs-api-definition
string EncryptionStrength { get; }

Property Value

string

Filename

Gets the session archive file name

Declaration

cs-api-definition
string Filename { get; }

Property Value

string

Version

Gets the version of the session archive - e.g. 1, 2

Declaration

cs-api-definition
string Version { get; }

Property Value

string

Methods

Close()

Releases the session archive file

Declaration

cs-api-definition
void Close()

GetFileBytes(string)

Gets a session data file from the session archive

Declaration

cs-api-definition
byte[] GetFileBytes(string sFilename)

Parameters

sFilename

string

The full path to the file

Returns

byte[]

A byte array with the file data

GetFileStream(string)

Gets a session data file from the session archive

Declaration

cs-api-definition
Stream GetFileStream(string sFilename)

Parameters

sFilename

string

The full path to the file

Returns

Stream

A stream with the file data

GetRequestFileList()

Gets a list of all session request files in the session archive

Declaration

cs-api-definition
string[] GetRequestFileList()

Returns

string[]