示例#1
0
 private bool RetryOnExistsFailure(MimerException exception)
 {
     if (exception.ErrorCode == 1049)
     {
         ClearPool();
         return(true);
     }
     return(false);
 }
示例#2
0
 private static bool IsDoesNotExist(MimerException exception) => exception.ErrorCode == 1049;