Interface ISAZWriter
Used to implement a class tha creates a SAZ file
Namespace: Fiddler
Assembly: FiddlerCore.dll
Syntax
public interface ISAZWriter
Properties
Comment
Sets the session archive metadata (version)
Declaration
string Comment { set; }
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.
|
Methods
AddFile(String, SAZWriterDelegate)
Adds a file in the session archive
Declaration
void AddFile(string sFilename, SAZWriterDelegate oSWD)
Parameters
System. The name of the file with full path |
SAZWriter The method which will be called when to get the file data |
CompleteArchive()
Called to flush all data in the session archive and finish writing to the file
Declaration
bool CompleteArchive()
Returns
System. True when the file is closed |
SetPassword(String)
Sets a password to be used to encrypt all data files in the session archive
Declaration
bool SetPassword(string sPassword)
Parameters
System. The password to use |
Returns
System.
|