public static LocalizedString UnableToFindUser(ADOperationErrorCode operationErrorCode) { return(new LocalizedString("UnableToFindUser", CalendaringStrings.ResourceManager, new object[] { operationErrorCode })); }
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; }
public ADOperationResultWithData(string dcName, TResult data, ADOperationErrorCode errorCode, Exception e) : base(errorCode, e) { this.DomainController = dcName; this.Data = data; }