FiddlerApplicationDoNotifyUser Method (IWin32Window, String, String, MessageBoxIcon) |
Log a notification to the OnNotification handler and, if not in quiet mode, show a MessageBox
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public static void DoNotifyUser(
IWin32Window ownerWnd,
string sMessage,
string sTitle,
MessageBoxIcon oIcon
)
Public Shared Sub DoNotifyUser (
ownerWnd As IWin32Window,
sMessage As String,
sTitle As String,
oIcon As MessageBoxIcon
)
public:
static void DoNotifyUser(
IWin32Window^ ownerWnd,
String^ sMessage,
String^ sTitle,
MessageBoxIcon oIcon
)
Parameters
- ownerWnd
- Type: System.Windows.FormsIWin32Window
Window to which this notification should be parented, or null - sMessage
- Type: SystemString
Text in the Window - sTitle
- Type: SystemString
Title of the Window - oIcon
- Type: System.Windows.FormsMessageBoxIcon
Icon for the window
See Also