FiddlerApplicationDoExport Method |
Export Sessions in the specified format
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public static bool DoExport(
string sExportFormat,
Session[] oSessions,
Dictionary<string, Object> dictOptions,
EventHandler<ProgressCallbackEventArgs> ehPCEA
)
Public Shared Function DoExport (
sExportFormat As String,
oSessions As Session(),
dictOptions As Dictionary(Of String, Object),
ehPCEA As EventHandler(Of ProgressCallbackEventArgs)
) As Boolean
public:
static bool DoExport(
String^ sExportFormat,
array<Session^>^ oSessions,
Dictionary<String^, Object^>^ dictOptions,
EventHandler<ProgressCallbackEventArgs^>^ ehPCEA
)
Parameters
- sExportFormat
- Type: SystemString
Shortname of desired format - oSessions
- Type: FiddlerSession
Sessions to export - dictOptions
- Type: System.Collections.GenericDictionaryString, Object
Options to pass to the ISessionExport interface - ehPCEA
- Type: SystemEventHandlerProgressCallbackEventArgs
Your callback event handler, or NULL to allow Fiddler to handle
Return Value
Type:
BooleanTRUE if successful, FALSE if desired format doesn't exist or other error occurs
See Also