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