Esempio n. 1
0
 public static LocalizedString UnableToFindUser(ADOperationErrorCode operationErrorCode)
 {
     return(new LocalizedString("UnableToFindUser", CalendaringStrings.ResourceManager, new object[]
     {
         operationErrorCode
     }));
 }
Esempio n. 2
0
 public UnableToFindUserException(ADOperationErrorCode operationErrorCode, Exception innerException) : base(CalendaringStrings.UnableToFindUser(operationErrorCode), innerException)
 {
     this.operationErrorCode = operationErrorCode;
 }
 public ADOperationResult(ADOperationErrorCode errorCode, Exception e)
 {
     this.errorCode = errorCode;
     this.exception = e;
 }
Esempio n. 4
0
 public ADOperationResultWithData(string dcName, TResult data, ADOperationErrorCode errorCode, Exception e) : base(errorCode, e)
 {
     this.DomainController = dcName;
     this.Data             = data;
 }