Beispiel #1
0
 public static void TrigerErrorMessage(IReaderMessage e)
 {
     if (AbstractReader.OnErrorMessage != null)
     {
         AbstractReader.OnErrorMessage(e);
     }
 }
Beispiel #2
0
 protected internal static void TrigerApiException(string senderName, ErrInfo e)
 {
     if (AbstractReader.OnApiException != null)
     {
         AbstractReader.OnApiException(senderName, e);
     }
 }