Interface
ISAZProvider

Used to implement a class for reading and writing session archives

Definition

Namespace:Fiddler

Assembly:FiddlerCore.dll

Syntax:

cs-api-definition
public interface ISAZProvider

Properties

BufferLocally

Whether to buffer the session archive locally first if it is opened from a network share. Network shares could be slow.

Declaration

cs-api-definition
bool BufferLocally { get; }

Property Value

bool

SupportsEncryption

Returns true if the session reader and writer supports password protected session archives

Declaration

cs-api-definition
bool SupportsEncryption { get; }

Property Value

bool

Methods

CreateSAZ(string)

Opens a session archive for writing to a specified file

Declaration

cs-api-definition
ISAZWriter CreateSAZ(string sFilename)

Parameters

sFilename

string

The full path to the session archive

Returns

ISAZWriter

An instance of a session archive writer

LoadSAZ(string)

Opens a session archive for reading from a specified file

Declaration

cs-api-definition
ISAZReader LoadSAZ(string sFilename)

Parameters

sFilename

string

The full path to the session archive

Returns

ISAZReader

An instance of a session archive reader