// Token: 0x06000B69 RID: 2921 RVA: 0x00049798 File Offset: 0x00047998
 public static void TryOperation(Action operation, Func <Exception, bool, bool> exceptionHandler)
 {
     if (operation == null)
     {
         throw new ArgumentNullException("operation");
     }
     if (exceptionHandler == null)
     {
         throw new ArgumentNullException("exceptionHandler");
     }
     MapiExceptionFilter.TryOperation <object>(MapiExceptionFilter.ConvertActionToFunc(operation), null, exceptionHandler);
 }