ReportInvisStatics() public méthode

public ReportInvisStatics ( string reportfile ) : void
reportfile string
Résultat void
Exemple #1
0
 private void OnClickReportInvisStatics(object sender, EventArgs e)
 {
     Cursor.Current = Cursors.WaitCursor;
     _currMap.ReportInvisStatics(Options.OutputPath);
     Cursor.Current = Cursors.Default;
     MessageBox.Show($"Report saved to {Options.OutputPath}", "Saved", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1);
 }
Exemple #2
0
 private void OnClickReportInvisStatics(object sender, EventArgs e)
 {
     Cursor.Current = Cursors.WaitCursor;
     currmap.ReportInvisStatics(FiddlerControls.Options.OutputPath);
     Cursor.Current = Cursors.Default;
     MessageBox.Show(String.Format("Report saved to {0}", FiddlerControls.Options.OutputPath), "Saved", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1);
 }