ToString() public method

public ToString ( ) : string
return string
Esempio n. 1
0
 internal void DeleteAlert(Alert alert)
 {
     lock (Alerts)
     {
         if (Alerts.Remove(alert))
         {
             Logger.Debug("Successfully removed alert [" + alert.ToString() + "]");
         }
         else
         {
             Logger.Warn("Failed to remove notication [" + alert.ToString() + "]");
         }
     }
 }