Interface ISAZProvider
Used to implement a class for reading and writing session archives
Namespace: Fiddler
Assembly: FiddlerCore.dll
Syntax
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
bool BufferLocally { get; }
Property Value
System.
|
SupportsEncryption
Returns true if the session reader and writer supports password protected session archives
Declaration
bool SupportsEncryption { get; }
Property Value
System.
|
Methods
CreateSAZ(String)
Opens a session archive for writing to a specified file
Declaration
ISAZWriter CreateSAZ(string sFilename)
Parameters
System. 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
ISAZReader LoadSAZ(string sFilename)
Parameters
System. The full path to the session archive |
Returns
ISAZReader
An instance of a session archive reader |