Interface IPasswordProtectedSessionImporter
ISessionImport allows loading of password-protected Session data
Inherited Members
Namespace: Fiddler
Assembly: FiddlerCore.dll
Syntax
public interface IPasswordProtectedSessionImporter : ISessionImporter, IDisposable
Methods
ImportSessions(String, Dictionary<String, Object>, EventHandler<ProgressCallbackEventArgs>, GetPasswordDelegate)
Import Sessions from a password-protected data source
Declaration
Session[] ImportSessions(string sImportFormat, Dictionary<string, object> dictOptions, EventHandler<ProgressCallbackEventArgs> evtProgressNotifications, GetPasswordDelegate passwordCallback)
Parameters
System.String
sImportFormat
Shortname of the format |
System.Collections.Generic.Dictionary<System.String, System.Object>
dictOptions
Dictionary of options that the Importer class may use |
System.EventHandler<ProgressCallbackEventArgs>
evtProgressNotifications
Callback event on which progress is reported or the host may cancel |
GetPasswordDelegate
passwordCallback
Callback that is used to request passwords from the host |
Returns
Session[]
Array of Session objects imported from source |