Exemple #1
0
 protected void OnInfoOccured(Info info)
 {
     InfoOccured?.Invoke(this, info);
 }
Exemple #2
0
 protected void OnInfoOccured(int code, string description)
 {
     InfoOccured?.Invoke(this, code, description);
 }
Exemple #3
0
 private void OnInfoMessage(string infoMessage)
 {
     InfoOccured?.Invoke(infoMessage);
 }
 private void SendInfo(string message, InfoType type)
 {
     InfoOccured?.Invoke(this, new InfoData {
         Message = message, Type = type
     });
 }