SDownload.Framework.IconReportProxy.IconReport C# (CSharp) Method

IconReport() private method

Displays a tooltip from the tray icon
private IconReport ( String message ) : void
message String The message to show
return void
        private void IconReport(String message)
        {
            lock (_icon)
            {
                _icon.BalloonTipTitle = "Downloading... ";
                _icon.BalloonTipText = message;
                _icon.ShowBalloonTip(300);
            }
        }