001 /*
002 * The MIT License
003 * Copyright (c) 2012 Microsoft Corporation
004 *
005 * Permission is hereby granted, free of charge, to any person obtaining a copy
006 * of this software and associated documentation files (the "Software"), to deal
007 * in the Software without restriction, including without limitation the rights
008 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
009 * copies of the Software, and to permit persons to whom the Software is
010 * furnished to do so, subject to the following conditions:
011 *
012 * The above copyright notice and this permission notice shall be included in
013 * all copies or substantial portions of the Software.
014 *
015 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
016 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
017 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
018 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
019 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
020 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
021 * THE SOFTWARE.
022 */
023
024 package microsoft.exchange.webservices.data.core.enumeration.misc.error;
025
026 /**
027 * Defines the error codes that can be returned by the Exchange Web Services.
028 */
029 public enum ServiceError {
030
031 // NoError. Indicates that an error has not occurred.
032 /**
033 * The No error.
034 */
035 NoError,
036
037 // ErrorAccessDenied
038 /**
039 * The Error access denied.
040 */
041 ErrorAccessDenied,
042
043 // ErrorAccessModeSpecified
044 /**
045 * The impersonation authentication header should not be included.
046 */
047 ErrorAccessModeSpecified,
048
049 // ErrorAccountDisabled
050 /**
051 * The Error account disabled.
052 */
053 ErrorAccountDisabled,
054
055 // ErrorAddDelegatesFailed
056 /**
057 * The Error add delegates failed.
058 */
059 ErrorAddDelegatesFailed,
060
061 // ErrorAddressSpaceNotFound
062 /**
063 * ErrorAddressSpaceNotFound
064 */
065 ErrorAddressSpaceNotFound,
066
067 // ErrorADOperation
068 /**
069 * The Error ad operation.
070 */
071 ErrorADOperation,
072
073 // ErrorADSessionFilter
074 /**
075 * The Error ad session filter.
076 */
077 ErrorADSessionFilter,
078
079 // ErrorADUnavailable
080 /**
081 * The Error ad unavailable.
082 */
083 ErrorADUnavailable,
084
085 // ErrorAffectedTaskOccurrencesRequired
086 /**
087 * The Error affected task occurrences required.
088 */
089 ErrorAffectedTaskOccurrencesRequired,
090
091 /**
092 * The conversation action alwayscategorize or alwaysmove or alwaysdelete
093 * has failed.
094 */
095 ErrorApplyConversationActionFailed,
096
097 /**
098 * The item has attachment at more than the maximum supported nest level.
099 */
100 ErrorAttachmentNestLevelLimitExceeded,
101
102 // ErrorAttachmentSizeLimitExceeded
103 /**
104 * The Error attachment size limit exceeded.
105 */
106 ErrorAttachmentSizeLimitExceeded,
107
108 // ErrorAutoDiscoverFailed
109 /**
110 * The Error auto discover failed.
111 */
112 ErrorAutoDiscoverFailed,
113
114 // ErrorAvailabilityConfigNotFound
115 /**
116 * The Error availability config not found.
117 */
118 ErrorAvailabilityConfigNotFound,
119
120 // ErrorBatchProcessingStopped
121 /**
122 * The Error batch processing stopped.
123 */
124 ErrorBatchProcessingStopped,
125
126 // ErrorCalendarCannotMoveOrCopyOccurrence
127 /**
128 * The Error calendar cannot move or copy occurrence.
129 */
130 ErrorCalendarCannotMoveOrCopyOccurrence,
131
132 // ErrorCalendarCannotUpdateDeletedItem
133 /**
134 * The Error calendar cannot update deleted item.
135 */
136 ErrorCalendarCannotUpdateDeletedItem,
137
138 // ErrorCalendarCannotUseIdForOccurrenceId
139 /**
140 * The Error calendar cannot use id for occurrence id.
141 */
142 ErrorCalendarCannotUseIdForOccurrenceId,
143
144 // ErrorCalendarCannotUseIdForRecurringMasterId
145 /**
146 * The Error calendar cannot use id for recurring master id.
147 */
148 ErrorCalendarCannotUseIdForRecurringMasterId,
149
150 // ErrorCalendarDurationIsTooLong
151 /**
152 * The Error calendar duration is too long.
153 */
154 ErrorCalendarDurationIsTooLong,
155
156 // ErrorCalendarEndDateIsEarlierThanStartDate
157 /**
158 * The Error calendar end date is earlier than start date.
159 */
160 ErrorCalendarEndDateIsEarlierThanStartDate,
161
162 // ErrorCalendarFolderIsInvalidForCalendarView
163 /**
164 * The Error calendar folder is invalid for calendar view.
165 */
166 ErrorCalendarFolderIsInvalidForCalendarView,
167
168 // ErrorCalendarInvalidAttributeValue
169 /**
170 * The Error calendar invalid attribute value.
171 */
172 ErrorCalendarInvalidAttributeValue,
173
174 // ErrorCalendarInvalidDayForTimeChangePattern
175 /**
176 * The Error calendar invalid day for time change pattern.
177 */
178 ErrorCalendarInvalidDayForTimeChangePattern,
179
180 // ErrorCalendarInvalidDayForWeeklyRecurrence
181 /**
182 * The Error calendar invalid day for weekly recurrence.
183 */
184 ErrorCalendarInvalidDayForWeeklyRecurrence,
185
186 // ErrorCalendarInvalidPropertyState
187 /**
188 * The Error calendar invalid property state.
189 */
190 ErrorCalendarInvalidPropertyState,
191
192 // ErrorCalendarInvalidPropertyValue
193 /**
194 * The Error calendar invalid property value.
195 */
196 ErrorCalendarInvalidPropertyValue,
197
198 // ErrorCalendarInvalidRecurrence
199 /**
200 * The Error calendar invalid recurrence.
201 */
202 ErrorCalendarInvalidRecurrence,
203
204 // ErrorCalendarInvalidTimeZone
205 /**
206 * The Error calendar invalid time zone.
207 */
208 ErrorCalendarInvalidTimeZone,
209
210 // ErrorCalendarIsCancelledForAccept
211 /**
212 * The Error calendar is cancelled for accept.
213 */
214 ErrorCalendarIsCancelledForAccept,
215
216 // ErrorCalendarIsCancelledForDecline
217 /**
218 * The Error calendar is cancelled for decline.
219 */
220 ErrorCalendarIsCancelledForDecline,
221
222 // ErrorCalendarIsCancelledForRemove
223 /**
224 * The Error calendar is cancelled for remove.
225 */
226 ErrorCalendarIsCancelledForRemove,
227
228 // ErrorCalendarIsCancelledForTentative
229 /**
230 * The Error calendar is cancelled for tentative.
231 */
232 ErrorCalendarIsCancelledForTentative,
233
234 // ErrorCalendarIsDelegatedForAccept
235 /**
236 * The Error calendar is delegated for accept.
237 */
238 ErrorCalendarIsDelegatedForAccept,
239
240 // ErrorCalendarIsDelegatedForDecline
241 /**
242 * The Error calendar is delegated for decline.
243 */
244 ErrorCalendarIsDelegatedForDecline,
245
246 // ErrorCalendarIsDelegatedForRemove
247 /**
248 * The Error calendar is delegated for remove.
249 */
250 ErrorCalendarIsDelegatedForRemove,
251
252 // ErrorCalendarIsDelegatedForTentative
253 /**
254 * The Error calendar is delegated for tentative.
255 */
256 ErrorCalendarIsDelegatedForTentative,
257
258 // ErrorCalendarIsNotOrganizer
259 /**
260 * The Error calendar is not organizer.
261 */
262 ErrorCalendarIsNotOrganizer,
263
264 // ErrorCalendarIsOrganizerForAccept
265 /**
266 * The Error calendar is organizer for accept.
267 */
268 ErrorCalendarIsOrganizerForAccept,
269
270 // ErrorCalendarIsOrganizerForDecline
271 /**
272 * The Error calendar is organizer for decline.
273 */
274 ErrorCalendarIsOrganizerForDecline,
275
276 // ErrorCalendarIsOrganizerForRemove
277 /**
278 * The Error calendar is organizer for remove.
279 */
280 ErrorCalendarIsOrganizerForRemove,
281
282 // ErrorCalendarIsOrganizerForTentative
283 /**
284 * The Error calendar is organizer for tentative.
285 */
286 ErrorCalendarIsOrganizerForTentative,
287
288 // ErrorCalendarMeetingRequestIsOutOfDate
289 /**
290 * The Error calendar meeting request is out of date.
291 */
292 ErrorCalendarMeetingRequestIsOutOfDate,
293
294 // ErrorCalendarOccurrenceIndexIsOutOfRecurrenceRange
295 /**
296 * The Error calendar occurrence index is out of recurrence range.
297 */
298 ErrorCalendarOccurrenceIndexIsOutOfRecurrenceRange,
299
300 // ErrorCalendarOccurrenceIsDeletedFromRecurrence
301 /**
302 * The Error calendar occurrence is deleted from recurrence.
303 */
304 ErrorCalendarOccurrenceIsDeletedFromRecurrence,
305
306 // ErrorCalendarOutOfRange
307 /**
308 * The Error calendar out of range.
309 */
310 ErrorCalendarOutOfRange,
311
312 // ErrorCalendarViewRangeTooBig
313 /**
314 * The Error calendar view range too big.
315 */
316 ErrorCalendarViewRangeTooBig,
317
318 // ErrorCallerIsInvalidADAccount
319 /**
320 * The Error caller is invalid ad account.
321 */
322 ErrorCallerIsInvalidADAccount,
323
324 // ErrorCannotCreateCalendarItemInNonCalendarFolder
325 /**
326 * The Error cannot create calendar item in non calendar folder.
327 */
328 ErrorCannotCreateCalendarItemInNonCalendarFolder,
329
330 // ErrorCannotCreateContactInNonContactFolder
331 /**
332 * The Error cannot create contact in non contact folder.
333 */
334 ErrorCannotCreateContactInNonContactFolder,
335
336 // ErrorCannotCreatePostItemInNonMailFolder
337 /**
338 * The Error cannot create post item in non mail folder.
339 */
340 ErrorCannotCreatePostItemInNonMailFolder,
341
342 // ErrorCannotCreateTaskInNonTaskFolder
343 /**
344 * The Error cannot create task in non task folder.
345 */
346 ErrorCannotCreateTaskInNonTaskFolder,
347
348 // ErrorCannotDeleteObject
349 /**
350 * The Error cannot delete object.
351 */
352 ErrorCannotDeleteObject,
353
354 // ErrorCannotDeleteTaskOccurrence
355 /**
356 * The Error cannot delete task occurrence.
357 */
358 ErrorCannotDeleteTaskOccurrence,
359
360 /**
361 * Folder cannot be emptied.
362 */
363 ErrorCannotEmptyFolder,
364
365 // ErrorCannotOpenFileAttachment
366 /**
367 * The Error cannot open file attachment.
368 */
369 ErrorCannotOpenFileAttachment,
370
371 // ErrorCannotSetCalendarPermissionOnNonCalendarFolder
372 /**
373 * The Error cannot set calendar permission on non calendar folder.
374 */
375 ErrorCannotSetCalendarPermissionOnNonCalendarFolder,
376
377 // ErrorCannotSetNonCalendarPermissionOnCalendarFolder
378 /**
379 * The Error cannot set non calendar permission on calendar folder.
380 */
381 ErrorCannotSetNonCalendarPermissionOnCalendarFolder,
382
383 // ErrorCannotSetPermissionUnknownEntries
384 /**
385 * The Error cannot set permission unknown entries.
386 */
387 ErrorCannotSetPermissionUnknownEntries,
388
389 // ErrorCannotUseFolderIdForItemId
390 /**
391 * The Error cannot use folder id for item id.
392 */
393 ErrorCannotUseFolderIdForItemId,
394
395 // ErrorCannotUseItemIdForFolderId
396 /**
397 * The Error cannot use item id for folder id.
398 */
399 ErrorCannotUseItemIdForFolderId,
400
401 // ErrorChangeKeyRequired
402 /**
403 * The Error change key required.
404 */
405 ErrorChangeKeyRequired,
406
407 // ErrorChangeKeyRequiredForWriteOperations
408 /**
409 * The Error change key required for write operations.
410 */
411 ErrorChangeKeyRequiredForWriteOperations,
412
413 /**
414 * ErrorClientDisconnected
415 */
416 ErrorClientDisconnected,
417
418 // ErrorConnectionFailed
419 /**
420 * The Error connection failed.
421 */
422 ErrorConnectionFailed,
423
424 // ErrorContainsFilterWrongType
425 /**
426 * The Error contains filter wrong type.
427 */
428 ErrorContainsFilterWrongType,
429
430 // ErrorContentConversionFailed
431 /**
432 * The Error content conversion failed.
433 */
434 ErrorContentConversionFailed,
435
436 // ErrorCorruptData
437 /**
438 * The Error corrupt data.
439 */
440 ErrorCorruptData,
441
442 // ErrorCreateItemAccessDenied
443 /**
444 * The Error create item access denied.
445 */
446 ErrorCreateItemAccessDenied,
447
448 // ErrorCreateManagedFolderPartialCompletion
449 /**
450 * The Error create managed folder partial completion.
451 */
452 ErrorCreateManagedFolderPartialCompletion,
453
454 // ErrorCreateSubfolderAccessDenied
455 /**
456 * The Error create subfolder access denied.
457 */
458 ErrorCreateSubfolderAccessDenied,
459
460 // ErrorCrossMailboxMoveCopy
461 /**
462 * The Error cross mailbox move copy.
463 */
464 ErrorCrossMailboxMoveCopy,
465
466 // ErrorCrossSiteRequest
467 /**
468 * The Error cross site request.
469 */
470 ErrorCrossSiteRequest,
471
472 // ErrorDataSizeLimitExceeded
473 /**
474 * The Error data size limit exceeded.
475 */
476 ErrorDataSizeLimitExceeded,
477
478 // ErrorDataSourceOperation
479 /**
480 * The Error data source operation.
481 */
482 ErrorDataSourceOperation,
483
484 // ErrorDelegateAlreadyExists
485 /**
486 * The Error delegate already exists.
487 */
488 ErrorDelegateAlreadyExists,
489
490 // ErrorDelegateCannotAddOwner
491 /**
492 * The Error delegate cannot add owner.
493 */
494 ErrorDelegateCannotAddOwner,
495
496 // ErrorDelegateMissingConfiguration
497 /**
498 * The Error delegate missing configuration.
499 */
500 ErrorDelegateMissingConfiguration,
501
502 // ErrorDelegateNoUser
503 /**
504 * The Error delegate no user.
505 */
506 ErrorDelegateNoUser,
507
508 // ErrorDelegateValidationFailed
509 /**
510 * The Error delegate validation failed.
511 */
512 ErrorDelegateValidationFailed,
513
514 // ErrorDeleteDistinguishedFolder
515 /**
516 * The Error delete distinguished folder.
517 */
518 ErrorDeleteDistinguishedFolder,
519
520 // ErrorDeleteItemsFailed
521 /**
522 * The Error delete item failed.
523 */
524 ErrorDeleteItemsFailed,
525
526 // ErrorDistinguishedUserNotSupported
527 /**
528 * The Error distinguished user not supported.
529 */
530 ErrorDistinguishedUserNotSupported,
531
532 // ErrorDistributionListMemberNotExist
533 /**
534 * The Error distribution list member not exist.
535 */
536 ErrorDistributionListMemberNotExist,
537
538 // ErrorDuplicateInputFolderNames
539 /**
540 * The Error duplicate input folder names.
541 */
542 ErrorDuplicateInputFolderNames,
543
544 // ErrorDuplicateSOAPHeader
545 /**
546 * The Error duplicate soap header.
547 */
548 ErrorDuplicateSOAPHeader,
549
550 // ErrorDuplicateUserIdsSpecified
551 /**
552 * The Error duplicate user ids specified.
553 */
554 ErrorDuplicateUserIdsSpecified,
555
556 // ErrorEmailAddressMismatch
557 /**
558 * The Error email address mismatch.
559 */
560 ErrorEmailAddressMismatch,
561
562 // ErrorEventNotFound
563 /**
564 * The Error event not found.
565 */
566 ErrorEventNotFound,
567
568 // ErrorExceededConnectionCount
569 /**
570 * The Error exceeded connection count.
571 */
572 ErrorExceededConnectionCount,
573
574 // ErrorExceededFindCountLimmit
575 /**
576 * The Error exceeded find count limit.
577 */
578 ErrorExceededFindCountLimit,
579
580 // ErrorExceededSubscritionCount
581 /**
582 * The Error exceeded subscription count.
583 */
584 ErrorExceededSubscriptionCount,
585
586 // ErrorExpiredSubscription
587 /**
588 * The Error expired subscription.
589 */
590 ErrorExpiredSubscription,
591
592 // ErrorFolderCorrupt
593 /**
594 * The Error folder corrupt.
595 */
596 ErrorFolderCorrupt,
597
598 // ErrorFolderExists
599 /**
600 * The Error folder exists.
601 */
602 ErrorFolderExists,
603
604 // ErrorFolderNotFound
605 /**
606 * The specified folder could not be found in the store.
607 */
608 ErrorFolderNotFound,
609
610 // ErrorFolderPropertRequestFailed
611 /**
612 * ErrorFolderPropertRequestFailed
613 */
614 ErrorFolderPropertRequestFailed,
615
616 // ErrorFolderSave
617 /**
618 * The folder save operation did not succeed.
619 */
620 ErrorFolderSave,
621
622 // ErrorFolderSaveFailed
623 /**
624 * The save operation failed or partially succeeded.
625 */
626 ErrorFolderSaveFailed,
627
628 // ErrorFolderSavePropertyError
629 /**
630 * The folder save operation failed due to invalid property values.
631 */
632 ErrorFolderSavePropertyError,
633
634 // ErrorFreeBusyDLLimitReached
635 /**
636 * ErrorFreeBusyDLLimitReached
637 */
638 ErrorFreeBusyDLLimitReached,
639
640 // ErrorFreeBusyGenerationFailed
641 /**
642 * ErrorFreeBusyGenerationFailed
643 */
644 ErrorFreeBusyGenerationFailed,
645
646 // ErrorGetServerSecurityDescriptorFailed
647 /**
648 * ErrorGetServerSecurityDescriptorFailed
649 */
650 ErrorGetServerSecurityDescriptorFailed,
651
652 // ErrorImpersonateUserDenied
653 /**
654 * The account does not have permission to impersonate the requested user.
655 */
656 ErrorImpersonateUserDenied,
657
658 // ErrorImpersonationDenied
659 /**
660 * ErrorImpersonationDenied
661 */
662 ErrorImpersonationDenied,
663
664 // ErrorImpersonationFailed
665 /**
666 * Impersonation failed.
667 */
668 ErrorImpersonationFailed,
669
670 // ErrorInboxRulesValidationError
671 /**
672 * ErrorInboxRulesValidationError
673 */
674 ErrorInboxRulesValidationError,
675
676 // ErrorIncorrectSchemaVersion
677 /**
678 * The request is valid but does not specify the correct server version in
679 * the RequestServerVersion SOAP header. Ensure that the
680 * RequestServerVersion SOAP header is set with the correct
681 * RequestServerVersionValue.
682 */
683 ErrorIncorrectSchemaVersion,
684
685 // ErrorIncorrectUpdatePropertyCount
686 /**
687 * An object within a change description must contain one and only one
688 * property to modify.
689 */
690 ErrorIncorrectUpdatePropertyCount,
691
692 // ErrorIndividualMailboxLimitReached
693 /**
694 * ErrorIndividualMailboxLimitReached
695 */
696 ErrorIndividualMailboxLimitReached,
697
698 // ErrorInsufficientResources
699 /**
700 * Resources are unavailable. Try again later.
701 */
702 ErrorInsufficientResources,
703
704 // ErrorInternalServerError
705 /**
706 * An internal server error occurred. The operation failed.
707 */
708 ErrorInternalServerError,
709
710 // ErrorInternalServerTransientError
711 /**
712 * An internal server error occurred. Try again later.
713 */
714 ErrorInternalServerTransientError,
715
716 // ErrorInvalidAccessLevel
717 /**
718 * ErrorInvalidAccessLevel
719 */
720 ErrorInvalidAccessLevel,
721
722 // ErrorInvalidArgument
723 /**
724 * ErrorInvalidArgument
725 */
726 ErrorInvalidArgument,
727
728 // ErrorInvalidAttachmentId
729 /**
730 * The specified attachment Id is invalid.
731 */
732 ErrorInvalidAttachmentId,
733
734 // ErrorInvalidAttachmentSubfilter
735 /**
736 * Attachment subfilters must have a single TextFilter therein.
737 */
738 ErrorInvalidAttachmentSubfilter,
739
740 // ErrorInvalidAttachmentSubfilterTextFilter
741 /**
742 * Attachment subfilters must have a single TextFilter on the display name
743 * only.
744 */
745 ErrorInvalidAttachmentSubfilterTextFilter,
746
747 // ErrorInvalidAuthorizationContext
748 /**
749 * ErrorInvalidAuthorizationContext
750 */
751 ErrorInvalidAuthorizationContext,
752
753 // ErrorInvalidChangeKey
754 /**
755 * The change key is invalid.
756 */
757 ErrorInvalidChangeKey,
758
759 // ErrorInvalidClientSecurityContext
760 /**
761 * ErrorInvalidClientSecurityContext
762 */
763 ErrorInvalidClientSecurityContext,
764
765 // ErrorInvalidCompleteDate
766 /**
767 * CompleteDate cannot be set to a date in the future.
768 */
769 ErrorInvalidCompleteDate,
770
771 // ErrorInvalidContactEmailAddress
772 /**
773 * The e-mail address that was supplied isn't valid.
774 */
775 ErrorInvalidContactEmailAddress,
776
777 // ErrorInvalidContactEmailIndex
778 /**
779 * The e-mail index supplied isn't valid.
780 */
781 ErrorInvalidContactEmailIndex,
782
783 // ErrorInvalidCrossForestCredentials
784 /**
785 * ErrorInvalidCrossForestCredentials
786 */
787 ErrorInvalidCrossForestCredentials,
788
789 /**
790 * Invalid Delegate Folder Permission.
791 */
792 ErrorInvalidDelegatePermission,
793
794 /**
795 * One or more UserId parameters are invalid. Make sure that the
796 * PrimarySmtpAddress, Sid and DisplayName property refer to the same user
797 * when specified.
798 */
799 ErrorInvalidDelegateUserId,
800
801 /**
802 * An ExchangeImpersonation SOAP header must contain a user principal name,
803 * user SID, or primary SMTP address.
804 */
805 ErrorInvalidExchangeImpersonationHeaderData,
806
807 /**
808 * Second operand in Excludes expression must be uint compatible.
809 */
810 ErrorInvalidExcludesRestriction,
811
812 /**
813 * FieldURI can only be used in Contains expressions.
814 */
815 ErrorInvalidExpressionTypeForSubFilter,
816
817 /**
818 * The extended property attribute combination is invalid.
819 */
820 ErrorInvalidExtendedProperty,
821
822 /**
823 * The extended property value is inconsistent with its type.
824 */
825 ErrorInvalidExtendedPropertyValue,
826
827 /**
828 * The original sender of the message (initiator field in the sharing
829 * metadata) is not valid.
830 */
831 ErrorInvalidExternalSharingInitiator,
832
833 /**
834 * The sharing message is not intended for this caller.
835 */
836 ErrorInvalidExternalSharingSubscriber,
837
838 /**
839 * The organization is either not federated, or it's configured incorrectly.
840 */
841 ErrorInvalidFederatedOrganizationId,
842
843 /**
844 * Folder Id is invalid.
845 */
846 ErrorInvalidFolderId,
847
848 /**
849 * ErrorInvalidFolderTypeForOperation
850 */
851 ErrorInvalidFolderTypeForOperation,
852
853 /**
854 * Invalid fractional paging offset values.
855 */
856 ErrorInvalidFractionalPagingParameters,
857
858 /**
859 * ErrorInvalidFreeBusyViewType
860 */
861 ErrorInvalidFreeBusyViewType,
862
863 /**
864 * Either DataType or SharedFolderId must be specified, but not both.
865 */
866 ErrorInvalidGetSharingFolderRequest,
867
868 // ErrorInvalidId
869 /**
870 * The Error invalid id.
871 */
872 ErrorInvalidId,
873
874 /**
875 * Id must be non-empty.
876 */
877 ErrorInvalidIdEmpty,
878
879 /**
880 * Id is malformed.
881 */
882 ErrorInvalidIdMalformed,
883
884 /**
885 * The EWS Id is in EwsLegacyId format which is not supported by the
886 * Exchange version specified by your request. Please use the ConvertId
887 * method to convert from EwsLegacyId to EwsId format.
888 */
889 ErrorInvalidIdMalformedEwsLegacyIdFormat,
890
891 /**
892 * Moniker exceeded allowable length.
893 */
894 ErrorInvalidIdMonikerTooLong,
895
896 /**
897 * The Id does not represent an item attachment.
898 */
899 ErrorInvalidIdNotAnItemAttachmentId,
900
901 /**
902 * ResolveNames returned an invalid Id.
903 */
904 ErrorInvalidIdReturnedByResolveNames,
905
906 /**
907 * Id exceeded allowable length.
908 */
909 ErrorInvalidIdStoreObjectIdTooLong,
910
911 /**
912 * Too many attachment levels.
913 */
914 ErrorInvalidIdTooManyAttachmentLevels,
915
916 /**
917 * The Id Xml is invalid.
918 */
919 ErrorInvalidIdXml,
920
921 /**
922 * The specified indexed paging values are invalid.
923 */
924 ErrorInvalidIndexedPagingParameters,
925
926 /**
927 * Only one child node is allowed when setting an Internet Message Header.
928 */
929 ErrorInvalidInternetHeaderChildNodes,
930
931 /**
932 * Item type is invalid for AcceptItem action.
933 */
934 ErrorInvalidItemForOperationAcceptItem,
935
936 /**
937 * Item type is invalid for CancelCalendarItem action.
938 */
939 ErrorInvalidItemForOperationCancelItem,
940
941 /**
942 * Item type is invalid for CreateItem operation.
943 */
944 ErrorInvalidItemForOperationCreateItem,
945
946 /**
947 * Item type is invalid for CreateItemAttachment operation.
948 */
949 ErrorInvalidItemForOperationCreateItemAttachment,
950
951 /**
952 * Item type is invalid for DeclineItem operation.
953 */
954 ErrorInvalidItemForOperationDeclineItem,
955
956 /**
957 * ExpandDL operation does not support this item type.
958 */
959 ErrorInvalidItemForOperationExpandDL,
960
961 /**
962 * Item type is invalid for RemoveItem operation.
963 */
964 ErrorInvalidItemForOperationRemoveItem,
965
966 /**
967 * Item type is invalid for SendItem operation.
968 */
969 ErrorInvalidItemForOperationSendItem,
970
971 /**
972 * The item of this type is invalid for TentativelyAcceptItem action.
973 */
974 ErrorInvalidItemForOperationTentative,
975
976 /**
977 * The logon type isn't valid.
978 */
979 ErrorInvalidLogonType,
980
981 /**
982 * Mailbox is invalid. Verify the specified Mailbox property.
983 */
984 ErrorInvalidMailbox,
985
986 /**
987 * The Managed Folder property is corrupt or otherwise invalid.
988 */
989 ErrorInvalidManagedFolderProperty,
990
991 /**
992 * The managed folder has an invalid quota.
993 */
994 ErrorInvalidManagedFolderQuota,
995
996 /**
997 * The managed folder has an invalid storage limit value.
998 */
999 ErrorInvalidManagedFolderSize,
1000
1001 /**
1002 * ErrorInvalidMergedFreeBusyInterval
1003 */
1004 ErrorInvalidMergedFreeBusyInterval,
1005
1006 /**
1007 * The specified value is not a valid name for name resolution.
1008 */
1009 ErrorInvalidNameForNameResolution,
1010
1011 /**
1012 * ErrorInvalidNetworkServiceContext
1013 */
1014 ErrorInvalidNetworkServiceContext,
1015
1016 /**
1017 * ErrorInvalidOofParameter
1018 */
1019 ErrorInvalidOofParameter,
1020
1021 /**
1022 * ErrorInvalidOperation
1023 */
1024 ErrorInvalidOperation,
1025
1026 /**
1027 * ErrorInvalidOrganizationRelationshipForFreeBusy
1028 */
1029 ErrorInvalidOrganizationRelationshipForFreeBusy,
1030
1031 /**
1032 * MaxEntriesReturned must be greater than zero.
1033 */
1034 ErrorInvalidPagingMaxRows,
1035
1036 /**
1037 * Cannot create a subfolder within a SearchFolder.
1038 */
1039 ErrorInvalidParentFolder,
1040
1041 /**
1042 * PercentComplete must be an integer between 0 and 100.
1043 */
1044 ErrorInvalidPercentCompleteValue,
1045
1046 /**
1047 * The permission settings were not valid.
1048 */
1049 ErrorInvalidPermissionSettings,
1050
1051 /**
1052 * The phone call ID isn't valid.
1053 */
1054 ErrorInvalidPhoneCallId,
1055
1056 /**
1057 * The phone number isn't valid.
1058 */
1059 ErrorInvalidPhoneNumber,
1060
1061 /**
1062 * The append action is not supported for this property.
1063 */
1064 ErrorInvalidPropertyAppend,
1065
1066 /**
1067 * The delete action is not supported for this property.
1068 */
1069 ErrorInvalidPropertyDelete,
1070
1071 /**
1072 * Property cannot be used in Exists expression. Use IsEqualTo instead.
1073 */
1074 ErrorInvalidPropertyForExists,
1075
1076 /**
1077 * Property is not valid for this operation.
1078 */
1079 ErrorInvalidPropertyForOperation,
1080
1081 /**
1082 * Property is not valid for this object type.
1083 */
1084 ErrorInvalidPropertyRequest,
1085
1086 /**
1087 * Set action is invalid for property.
1088 */
1089 ErrorInvalidPropertySet,
1090
1091 // / <summary>
1092 // / Update operation is invalid for property of a sent message.
1093 // / </summary>
1094 ErrorInvalidPropertyUpdateSentMessage,
1095
1096 // / <summary>
1097 // / The proxy security context is invalid.
1098 // / </summary>
1099 ErrorInvalidProxySecurityContext,
1100
1101 // / <summary>
1102 // / SubscriptionId is invalid. Subscription is not a pull subscription.
1103 // / </summary>
1104 ErrorInvalidPullSubscriptionId,
1105
1106 // / <summary>
1107 // / URL specified for push subscription is invalid.
1108 // / </summary>
1109 ErrorInvalidPushSubscriptionUrl,
1110
1111 // / <summary>
1112 // / One or more recipients are invalid.
1113 // / </summary>
1114 ErrorInvalidRecipients,
1115
1116 // / <summary>
1117 // / Recipient subfilters are only supported when
1118 // /there are two expressions within a single
1119 // / AND filter.
1120 // / </summary>
1121 ErrorInvalidRecipientSubfilter,
1122
1123 // / <summary>
1124 // / Recipient subfilter must have a comparison filter
1125 // /that tests equality to recipient type
1126 // / or attendee type.
1127 // / </summary>
1128 ErrorInvalidRecipientSubfilterComparison,
1129
1130 // / <summary>
1131 // / Recipient subfilters must have a text filter
1132 // /and a comparison filter in that order.
1133 // / </summary>
1134 ErrorInvalidRecipientSubfilterOrder,
1135
1136 // / <summary>
1137 // / Recipient subfilter must have a TextFilter on the SMTP address only.
1138 // / </summary>
1139 ErrorInvalidRecipientSubfilterTextFilter,
1140
1141 // / <summary>
1142 // / The reference item does not support the requested operation.
1143 // / </summary>
1144 ErrorInvalidReferenceItem,
1145
1146 // / <summary>
1147 // / The request is invalid.
1148 // / </summary>
1149 ErrorInvalidRequest,
1150
1151 // / <summary>
1152 // / The restriction is invalid.
1153 // / </summary>
1154 ErrorInvalidRestriction,
1155
1156 // / <summary>
1157 // / The routing type format is invalid.
1158 // / </summary>
1159 ErrorInvalidRoutingType,
1160
1161 // / <summary>
1162 // / ErrorInvalidScheduledOofDuration
1163 // / </summary>
1164 ErrorInvalidScheduledOofDuration,
1165
1166 // / <summary>
1167 // / The mailbox that was requested doesn't support
1168 // /the specified RequestServerVersion.
1169 // / </summary>
1170 ErrorInvalidSchemaVersionForMailboxVersion,
1171
1172 // / <summary>
1173 // / ErrorInvalidSecurityDescriptor
1174 // / </summary>
1175 ErrorInvalidSecurityDescriptor,
1176
1177 // / <summary>
1178 // / Invalid combination of SaveItemToFolder
1179 // /attribute and SavedItemFolderId element.
1180 // / </summary>
1181 ErrorInvalidSendItemSaveSettings,
1182
1183 // / <summary>
1184 // / Invalid serialized access token.
1185 // / </summary>
1186 ErrorInvalidSerializedAccessToken,
1187
1188 // / <summary>
1189 // / The specified server version is invalid.
1190 // / </summary>
1191 ErrorInvalidServerVersion,
1192
1193 // / <summary>
1194 // / The sharing message metadata is not valid.
1195 // / </summary>
1196 ErrorInvalidSharingData,
1197
1198 // / <summary>
1199 // / The sharing message is not valid.
1200 // / </summary>
1201 ErrorInvalidSharingMessage,
1202
1203 // / <summary>
1204 // / A SID with an invalid format was encountered.
1205 // / </summary>
1206 ErrorInvalidSid,
1207
1208 // / <summary>
1209 // / The SIP address isn't valid.
1210 // / </summary>
1211 ErrorInvalidSIPUri,
1212
1213 // / <summary>
1214 // / The SMTP address format is invalid.
1215 // / </summary>
1216 ErrorInvalidSmtpAddress,
1217
1218 // / <summary>
1219 // / Invalid subFilterType.
1220 // / </summary>
1221 ErrorInvalidSubfilterType,
1222
1223 // / <summary>
1224 // / SubFilterType is not attendee type.
1225 // / </summary>
1226 ErrorInvalidSubfilterTypeNotAttendeeType,
1227
1228 // / <summary>
1229 // / SubFilterType is not recipient type.
1230 // / </summary>
1231 ErrorInvalidSubfilterTypeNotRecipientType,
1232
1233 // / <summary>
1234 // / Subscription is invalid.
1235 // / </summary>
1236 ErrorInvalidSubscription,
1237
1238 // / <summary>
1239 // / A subscription can only be established on
1240 // /a single public folder or on folder from a
1241 // / single mailbox.
1242 // / </summary>
1243 ErrorInvalidSubscriptionRequest,
1244
1245 // / <summary>
1246 // / Synchronization state data is corrupt or otherwise invalid.
1247 // / </summary>
1248 ErrorInvalidSyncStateData,
1249
1250 // / <summary>
1251 // / ErrorInvalidTimeInterval
1252 // / </summary>
1253 ErrorInvalidTimeInterval,
1254
1255 // / <summary>
1256 // / A UserId was not valid.
1257 // / </summary>
1258 ErrorInvalidUserInfo,
1259
1260 // / <summary>
1261 // / ErrorInvalidUserOofSettings
1262 // / </summary>
1263 ErrorInvalidUserOofSettings,
1264
1265 // / <summary>
1266 // / The impersonation principal name is invalid.
1267 // / </summary>
1268 ErrorInvalidUserPrincipalName,
1269
1270 // / <summary>
1271 // / The user SID is invalid or does not map
1272 // /to a user in the Active Directory.
1273 // / </summary>
1274 ErrorInvalidUserSid,
1275
1276 // / <summary>
1277 // / ErrorInvalidUserSidMissingUPN
1278 // / </summary>
1279 ErrorInvalidUserSidMissingUPN,
1280
1281 // / <summary>
1282 // / The specified value is invalid for property.
1283 // / </summary>
1284 ErrorInvalidValueForProperty,
1285
1286 // / <summary>
1287 // / The watermark is invalid.
1288 // / </summary>
1289 ErrorInvalidWatermark,
1290
1291 // / <summary>
1292 // / A valid IP gateway couldn't be found.
1293 // / </summary>
1294 ErrorIPGatewayNotFound,
1295
1296 // / <summary>
1297 // / The send or update operation could not be
1298 // /performed because the change key passed in the
1299 // / request does not match the current change key for the item.
1300 // / </summary>
1301 ErrorIrresolvableConflict,
1302
1303 // / <summary>
1304 // / The item is corrupt.
1305 // / </summary>
1306 ErrorItemCorrupt,
1307
1308 // / <summary>
1309 // / The specified object was not found in the store.
1310 // / </summary>
1311 ErrorItemNotFound,
1312
1313 // / <summary>
1314 // / One or more of the property requested for
1315 // /this item could not be retrieved.
1316 // / </summary>
1317 ErrorItemPropertyRequestFailed,
1318
1319 // / <summary>
1320 // / The item save operation did not succeed.
1321 // / </summary>
1322 ErrorItemSave,
1323
1324 // / <summary>
1325 // / Item save operation did not succeed.
1326 // / </summary>
1327 ErrorItemSavePropertyError,
1328
1329 // / <summary>
1330 // / ErrorLegacyMailboxFreeBusyViewTypeNotMerged
1331 // / </summary>
1332 ErrorLegacyMailboxFreeBusyViewTypeNotMerged,
1333
1334 // / <summary>
1335 // / ErrorLocalServerObjectNotFound
1336 // / </summary>
1337 ErrorLocalServerObjectNotFound,
1338
1339 // / <summary>
1340 // / ErrorLogonAsNetworkServiceFailed
1341 // / </summary>
1342 ErrorLogonAsNetworkServiceFailed,
1343
1344 // / <summary>
1345 // / Unable to access an account or mailbox.
1346 // / </summary>
1347 ErrorMailboxConfiguration,
1348
1349 // / <summary>
1350 // / ErrorMailboxDataArrayEmpty
1351 // / </summary>
1352 ErrorMailboxDataArrayEmpty,
1353
1354 // / <summary>
1355 // / ErrorMailboxDataArrayTooBig
1356 // / </summary>
1357 ErrorMailboxDataArrayTooBig,
1358
1359 // / <summary>
1360 // / ErrorMailboxFailover
1361 // / </summary>
1362 ErrorMailboxFailover,
1363
1364 // / <summary>
1365 // / ErrorMailboxLogonFailed
1366 // / </summary>
1367 ErrorMailboxLogonFailed,
1368
1369 // / <summary>
1370 // / Mailbox move in progress. Try again later.
1371 // / </summary>
1372 ErrorMailboxMoveInProgress,
1373
1374 // / <summary>
1375 // / The mailbox database is temporarily unavailable.
1376 // / </summary>
1377 ErrorMailboxStoreUnavailable,
1378
1379 // / <summary>
1380 // / ErrorMailRecipientNotFound
1381 // / </summary>
1382 ErrorMailRecipientNotFound,
1383
1384 // / <summary>
1385 // / MailTips aren't available for your organization.
1386 // / </summary>
1387 ErrorMailTipsDisabled,
1388
1389 // / <summary>
1390 // / The specified Managed Folder already exists in the mailbox.
1391 // / </summary>
1392 ErrorManagedFolderAlreadyExists,
1393
1394 // / <summary>
1395 // / Unable to find the specified managed folder in the Active Directory.
1396 // / </summary>
1397 ErrorManagedFolderNotFound,
1398
1399 // / <summary>
1400 // / Failed to create or bind to the folder: Managed Folders
1401 // / </summary>
1402 ErrorManagedFoldersRootFailure,
1403
1404 // / <summary>
1405 // / ErrorMeetingSuggestionGenerationFailed
1406 // / </summary>
1407 ErrorMeetingSuggestionGenerationFailed,
1408
1409 // / <summary>
1410 // / MessageDisposition attribute is required.
1411 // / </summary>
1412 ErrorMessageDispositionRequired,
1413
1414 // / <summary>
1415 // / The message exceeds the maximum supported size.
1416 // / </summary>
1417 ErrorMessageSizeExceeded,
1418
1419 // / <summary>
1420 // / The domain specified in the tracking request doesn't exist.
1421 // / </summary>
1422 ErrorMessageTrackingNoSuchDomain,
1423
1424 // / <summary>
1425 // / The log search service can't track this message.
1426 // / </summary>
1427 ErrorMessageTrackingPermanentError,
1428
1429 // / <summary>
1430 // / The log search service isn't currently
1431 // /available. Please try again later.
1432 // / </summary>
1433 ErrorMessageTrackingTransientError,
1434
1435 // / <summary>
1436 // / MIME content conversion failed.
1437 // / </summary>
1438 ErrorMimeContentConversionFailed,
1439
1440 // / <summary>
1441 // / Invalid MIME content.
1442 // / </summary>
1443 ErrorMimeContentInvalid,
1444
1445 // / <summary>
1446 // / Invalid base64 string for MIME content.
1447 // / </summary>
1448 ErrorMimeContentInvalidBase64String,
1449
1450 // / <summary>
1451 // / The subscription has missed events,
1452 // /but will continue service on this connection.
1453 // / </summary>
1454 ErrorMissedNotificationEvents,
1455
1456 // / <summary>
1457 // / ErrorMissingArgument
1458 // / </summary>
1459 ErrorMissingArgument,
1460
1461 // / <summary>
1462 // / When making a request as an account that does
1463 // /not have a mailbox, you must specify the
1464 // / mailbox primary SMTP address for any distinguished folder Ids.
1465 // / </summary>
1466 ErrorMissingEmailAddress,
1467
1468 // / <summary>
1469 // / When making a request with an account that does not
1470 // /have a mailbox, you must specify the
1471 // / primary SMTP address for an existing mailbox.
1472 // / </summary>
1473 ErrorMissingEmailAddressForManagedFolder,
1474
1475 // / <summary>
1476 // / EmailAddress or ItemId must be included in the request.
1477 // / </summary>
1478 ErrorMissingInformationEmailAddress,
1479
1480 // / <summary>
1481 // / ReferenceItemId must be included in the request.
1482 // / </summary>
1483 ErrorMissingInformationReferenceItemId,
1484
1485 // / <summary>
1486 // / SharingFolderId must be included in the request.
1487 // / </summary>
1488 ErrorMissingInformationSharingFolderId,
1489
1490 // / <summary>
1491 // / An item must be specified when creating an item attachment.
1492 // / </summary>
1493 ErrorMissingItemForCreateItemAttachment,
1494
1495 // / <summary>
1496 // / The managed folder Id is missing.
1497 // / </summary>
1498 ErrorMissingManagedFolderId,
1499
1500 // / <summary>
1501 // / A message needs to have at least one recipient.
1502 // / </summary>
1503 ErrorMissingRecipients,
1504
1505 // / <summary>
1506 // / Missing information for delegate user. You must
1507 // /either specify a valid SMTP address or
1508 // / SID.
1509 // / </summary>
1510 ErrorMissingUserIdInformation,
1511
1512 // / <summary>
1513 // / Only one access mode header may be specified.
1514 // / </summary>
1515 ErrorMoreThanOneAccessModeSpecified,
1516
1517 // / <summary>
1518 // / The move or copy operation failed.
1519 // / </summary>
1520 ErrorMoveCopyFailed,
1521
1522 // / <summary>
1523 // / Cannot move distinguished folder.
1524 // / </summary>
1525 ErrorMoveDistinguishedFolder,
1526
1527 // / <summary>
1528 // / Multiple results were found.
1529 // / </summary>
1530 ErrorNameResolutionMultipleResults,
1531
1532 // / <summary>
1533 // / User must have a mailbox for name resolution operations.
1534 // / </summary>
1535 ErrorNameResolutionNoMailbox,
1536
1537 // / <summary>
1538 // / No results were found.
1539 // / </summary>
1540 ErrorNameResolutionNoResults,
1541
1542 // / <summary>
1543 // / Another connection was opened against this subscription.
1544 // / </summary>
1545 ErrorNewEventStreamConnectionOpened,
1546
1547 // / <summary>
1548 // / Exchange Web Services are not currently available
1549 // /for this request because there are no
1550 // / available Client Access Services Servers in the target AD Site.
1551 // / </summary>
1552 ErrorNoApplicableProxyCASServersAvailable,
1553
1554 // / <summary>
1555 // / ErrorNoCalendar
1556 // / </summary>
1557 ErrorNoCalendar,
1558
1559 // / <summary>
1560 // / Exchange Web Services aren't available for this
1561 // /request because there is no Client Access
1562 // / server with the necessary configuration in the
1563 // /Active Directory site where the mailbox is
1564 // / stored. If the problem continues, click Help.
1565 // / </summary>
1566 ErrorNoDestinationCASDueToKerberosRequirements,
1567
1568 // / <summary>
1569 // / Exchange Web Services aren't currently available
1570 // /for this request because an SSL
1571 // / connection couldn't be established to the Client
1572 // /Access server that should be used for
1573 // / mailbox access. If the problem continues, click Help.
1574 // / </summary>
1575 ErrorNoDestinationCASDueToSSLRequirements,
1576
1577 // / <summary>
1578 // / Exchange Web Services aren't currently available
1579 // /for this request because the Client
1580 // / Access server used for proxying has an older
1581 // /version of Exchange installed than the
1582 // / Client Access server in the mailbox Active Directory site.
1583 // / </summary>
1584 ErrorNoDestinationCASDueToVersionMismatch,
1585
1586 // / <summary>
1587 // / You cannot specify the FolderClass when creating a non-generic folder.
1588 // / </summary>
1589 ErrorNoFolderClassOverride,
1590
1591 // / <summary>
1592 // / ErrorNoFreeBusyAccess
1593 // / </summary>
1594 ErrorNoFreeBusyAccess,
1595
1596 // / <summary>
1597 // / Mailbox does not exist.
1598 // / </summary>
1599 ErrorNonExistentMailbox,
1600
1601 // / <summary>
1602 // / The primary SMTP address must be specified when referencing a mailbox.
1603 // / </summary>
1604 ErrorNonPrimarySmtpAddress,
1605
1606 // / <summary>
1607 // / Custom property cannot be specified using
1608 // /property tags. The GUID and Id/Name
1609 // / combination must be used instead.
1610 // / </summary>
1611 ErrorNoPropertyTagForCustomProperties,
1612
1613 // / <summary>
1614 // / ErrorNoPublicFolderReplicaAvailable
1615 // / </summary>
1616 ErrorNoPublicFolderReplicaAvailable,
1617
1618 // / <summary>
1619 // / There are no public folder servers available.
1620 // / </summary>
1621 ErrorNoPublicFolderServerAvailable,
1622
1623 // / <summary>
1624 // / Exchange Web Services are not currently available
1625 // /for this request because none of the
1626 // / Client Access Servers in the destination site could process the
1627 // request.
1628 // / </summary>
1629 ErrorNoRespondingCASInDestinationSite,
1630
1631 // / <summary>
1632 // / Policy does not allow granting of permissions to external users.
1633 // / </summary>
1634 ErrorNotAllowedExternalSharingByPolicy,
1635
1636 // / <summary>
1637 // / The user is not a delegate for the mailbox.
1638 // / </summary>
1639 ErrorNotDelegate,
1640
1641 // / <summary>
1642 // / There was not enough memory to complete the request.
1643 // / </summary>
1644 ErrorNotEnoughMemory,
1645
1646 // / <summary>
1647 // / The sharing message is not supported.
1648 // / </summary>
1649 ErrorNotSupportedSharingMessage,
1650
1651 // / <summary>
1652 // / Operation would change object type, which is not permitted.
1653 // / </summary>
1654 ErrorObjectTypeChanged,
1655
1656 // / <summary>
1657 // / Modified occurrence is crossing or overlapping adjacent occurrence.
1658 // / </summary>
1659 ErrorOccurrenceCrossingBoundary,
1660
1661 // / <summary>
1662 // / One occurrence of the recurring calendar item
1663 // /overlaps with another occurrence of the
1664 // / same calendar item.
1665 // / </summary>
1666 ErrorOccurrenceTimeSpanTooBig,
1667
1668 // / <summary>
1669 // / Operation not allowed with public folder root.
1670 // / </summary>
1671 ErrorOperationNotAllowedWithPublicFolderRoot,
1672
1673 // / <summary>
1674 // / Organization is not federated.
1675 // / </summary>
1676 ErrorOrganizationNotFederated,
1677
1678 // / <summary>
1679 // / ErrorOutlookRuleBlobExists
1680 // / </summary>
1681 ErrorOutlookRuleBlobExists,
1682
1683 // / <summary>
1684 // / You must specify the parent folder Id for this operation.
1685 // / </summary>
1686 ErrorParentFolderIdRequired,
1687
1688 // / <summary>
1689 // / The specified parent folder could not be found.
1690 // / </summary>
1691 ErrorParentFolderNotFound,
1692
1693 // / <summary>
1694 // / Password change is required.
1695 // / </summary>
1696 ErrorPasswordChangeRequired,
1697
1698 // / <summary>
1699 // / Password has expired. Change password.
1700 // / </summary>
1701 ErrorPasswordExpired,
1702
1703 // / <summary>
1704 // / Policy does not allow granting permission level to user.
1705 // / </summary>
1706 ErrorPermissionNotAllowedByPolicy,
1707
1708 // / <summary>
1709 // / Dialing restrictions are preventing the phone number
1710 // /that was entered from being dialed.
1711 // / </summary>
1712 ErrorPhoneNumberNotDialable,
1713
1714 // / <summary>
1715 // / Property update did not succeed.
1716 // / </summary>
1717 ErrorPropertyUpdate,
1718
1719 // / <summary>
1720 // / At least one property failed validation.
1721 // / </summary>
1722 ErrorPropertyValidationFailure,
1723
1724 // / <summary>
1725 // / Subscription related request failed because EWS
1726 // /could not contact the appropriate CAS
1727 // / server for this request. If this problem persists,
1728 // /recreate the subscription.
1729 // / </summary>
1730 ErrorProxiedSubscriptionCallFailure,
1731
1732 // / <summary>
1733 // / Request failed because EWS could not contact
1734 // /the appropriate CAS server for this request.
1735 // / </summary>
1736 ErrorProxyCallFailed,
1737
1738 // / <summary>
1739 // / Exchange Web Services (EWS) is not available for
1740 // /this mailbox because the user account
1741 // / associated with the mailbox is a member of
1742 // /too many groups. EWS limits the group
1743 // / membership it can proxy between Client Access Service Servers to 3000.
1744 // / </summary>
1745 ErrorProxyGroupSidLimitExceeded,
1746
1747 // / <summary>
1748 // / ErrorProxyRequestNotAllowed
1749 // / </summary>
1750 ErrorProxyRequestNotAllowed,
1751
1752 // / <summary>
1753 // / ErrorProxyRequestProcessingFailed
1754 // / </summary>
1755 ErrorProxyRequestProcessingFailed,
1756
1757 // / <summary>
1758 // / Exchange Web Services are not currently
1759 // /available for this mailbox because it could not
1760 // / determine the Client Access Services Server to use for the mailbox.
1761 // / </summary>
1762 ErrorProxyServiceDiscoveryFailed,
1763
1764 // / <summary>
1765 // / Proxy token has expired.
1766 // / </summary>
1767 ErrorProxyTokenExpired,
1768
1769 // / <summary>
1770 // / ErrorPublicFolderRequestProcessingFailed
1771 // / </summary>
1772 ErrorPublicFolderRequestProcessingFailed,
1773
1774 // / <summary>
1775 // / ErrorPublicFolderServerNotFound
1776 // / </summary>
1777 ErrorPublicFolderServerNotFound,
1778
1779 // / <summary>
1780 // / The search folder has a restriction that is too long to return.
1781 // / </summary>
1782 ErrorQueryFilterTooLong,
1783
1784 // / <summary>
1785 // / Mailbox has exceeded maximum mailbox size.
1786 // / </summary>
1787 ErrorQuotaExceeded,
1788
1789 // / <summary>
1790 // / Unable to retrieve events for this subscription.
1791 // /The subscription must be recreated.
1792 // / </summary>
1793 ErrorReadEventsFailed,
1794
1795 // / <summary>
1796 // / Unable to suppress read receipt. Read receipts are not pending.
1797 // / </summary>
1798 ErrorReadReceiptNotPending,
1799
1800 // / <summary>
1801 // / Recurrence end date can not exceed Sep 1, 4500 00:00:00.
1802 // / </summary>
1803 ErrorRecurrenceEndDateTooBig,
1804
1805 // / <summary>
1806 // / Recurrence has no occurrences in the specified range.
1807 // / </summary>
1808 ErrorRecurrenceHasNoOccurrence,
1809
1810 // / <summary>
1811 // / Failed to remove one or more delegates.
1812 // / </summary>
1813 ErrorRemoveDelegatesFailed,
1814
1815 // / <summary>
1816 // / ErrorRequestAborted
1817 // / </summary>
1818 ErrorRequestAborted,
1819
1820 // / <summary>
1821 // / ErrorRequestStreamTooBig
1822 // / </summary>
1823 ErrorRequestStreamTooBig,
1824
1825 // / <summary>
1826 // / Required property is missing.
1827 // / </summary>
1828 ErrorRequiredPropertyMissing,
1829
1830 // / <summary>
1831 // / Cannot perform ResolveNames for non-contact folder.
1832 // / </summary>
1833 ErrorResolveNamesInvalidFolderType,
1834
1835 // / <summary>
1836 // / Only one contacts folder can be specified in request.
1837 // / </summary>
1838 ErrorResolveNamesOnlyOneContactsFolderAllowed,
1839
1840 // / <summary>
1841 // / The response failed schema validation.
1842 // / </summary>
1843 ErrorResponseSchemaValidation,
1844
1845 // / <summary>
1846 // / The restriction or sort order is too complex for this operation.
1847 // / </summary>
1848 ErrorRestrictionTooComplex,
1849
1850 // / <summary>
1851 // / Restriction contained too many elements.
1852 // / </summary>
1853 ErrorRestrictionTooLong,
1854
1855 // / <summary>
1856 // / ErrorResultSetTooBig
1857 // / </summary>
1858 ErrorResultSetTooBig,
1859
1860 // / <summary>
1861 // / ErrorRulesOverQuota
1862 // / </summary>
1863 ErrorRulesOverQuota,
1864
1865 // / <summary>
1866 // / The folder in which item were to be saved could not be found.
1867 // / </summary>
1868 ErrorSavedItemFolderNotFound,
1869
1870 // / <summary>
1871 // / The request failed schema validation.
1872 // / </summary>
1873 ErrorSchemaValidation,
1874
1875 // / <summary>
1876 // / The search folder is not initialized.
1877 // / </summary>
1878 ErrorSearchFolderNotInitialized,
1879
1880 // / <summary>
1881 // / The user account which was used to submit this request
1882 // /does not have the right to send
1883 // / mail on behalf of the specified sending account.
1884 // / </summary>
1885 ErrorSendAsDenied,
1886
1887 // / <summary>
1888 // / SendMeetingCancellations attribute is required for Calendar item.
1889 // / </summary>
1890 ErrorSendMeetingCancellationsRequired,
1891
1892 // / <summary>
1893 // / The SendMeetingInvitationsOrCancellations attribute
1894 // /is required for calendar item.
1895 // / </summary>
1896 ErrorSendMeetingInvitationsOrCancellationsRequired,
1897
1898 // ErrorSendMeetingInvitationsRequired
1899 /**
1900 * The SendMeetingInvitations attribute is required for calendar item.
1901 */
1902 ErrorSendMeetingInvitationsRequired,
1903
1904 // ErrorSentMeetingRequestUpdate
1905 /**
1906 * The meeting request has already been sent and might not be updated.
1907 */
1908 ErrorSentMeetingRequestUpdate,
1909
1910 // ErrorSentTaskRequestUpdate
1911 /**
1912 * The task request has already been sent and may not be updated.
1913 */
1914 ErrorSentTaskRequestUpdate,
1915
1916 // ErrorServerBusy
1917 /**
1918 * The server cannot service this request right now. Try again later.
1919 */
1920 ErrorServerBusy,
1921
1922 // ErrorServiceDiscoveryFailed
1923 /**
1924 * ErrorServiceDiscoveryFailed
1925 */
1926 ErrorServiceDiscoveryFailed,
1927
1928 // ErrorSharingNoExternalEwsAvailable
1929 /**
1930 * No external Exchange Web Service URL available.
1931 */
1932 ErrorSharingNoExternalEwsAvailable,
1933
1934 // ErrorSharingSynchronizationFailed
1935 /**
1936 * Failed to synchronize the sharing folder.
1937 */
1938 ErrorSharingSynchronizationFailed,
1939
1940 // ErrorStaleObject
1941 /**
1942 * The current ChangeKey is required for this operation.
1943 */
1944 ErrorStaleObject,
1945
1946 // ErrorSubmissionQuotaExceeded
1947 /**
1948 * The message couldn't be sent because the sender's submission quota was
1949 * exceeded. Please try again later.
1950 */
1951 ErrorSubmissionQuotaExceeded,
1952
1953 // ErrorSubscriptionAccessDenied
1954 /**
1955 * Access is denied. Only the subscription owner may access the
1956 * subscription.
1957 */
1958 ErrorSubscriptionAccessDenied,
1959
1960 // ErrorSubscriptionDelegateAccessNotSupported
1961 /**
1962 * Subscriptions are not supported for delegate user access.
1963 */
1964 ErrorSubscriptionDelegateAccessNotSupported,
1965
1966 // ErrorSubscriptionNotFound
1967 /**
1968 * The specified subscription was not found.
1969 */
1970 ErrorSubscriptionNotFound,
1971
1972 // ErrorSubscriptionUnsubscribed
1973 /**
1974 * The StreamingSubscription was unsubscribed while the current connection
1975 * was servicing it.
1976 */
1977 ErrorSubscriptionUnsubscribed,
1978
1979 // ErrorSyncFolderNotFound
1980 /**
1981 * The folder to be synchronized could not be found.
1982 */
1983 ErrorSyncFolderNotFound,
1984
1985 // ErrorTimeIntervalTooBig
1986 /**
1987 * ErrorTimeIntervalTooBig
1988 */
1989 ErrorTimeIntervalTooBig,
1990
1991 // ErrorTimeoutExpired
1992 /**
1993 * ErrorTimeoutExpired
1994 */
1995 ErrorTimeoutExpired,
1996
1997 // ErrorTimeZone
1998 /**
1999 * The time zone isn't valid.
2000 */
2001 ErrorTimeZone,
2002
2003 // ErrorToFolderNotFound
2004 /**
2005 * The specified target folder could not be found.
2006 */
2007 ErrorToFolderNotFound,
2008
2009 // ErrorTokenSerializationDenied
2010 /**
2011 * The requesting account does not have permission to serialize tokens.
2012 */
2013 ErrorTokenSerializationDenied,
2014
2015 // ErrorUnableToGetUserOofSettings
2016 /**
2017 * ErrorUnableToGetUserOofSettings
2018 */
2019 ErrorUnableToGetUserOofSettings,
2020
2021 // ErrorUnifiedMessagingDialPlanNotFound
2022 /**
2023 * A dial plan could not be found.
2024 */
2025 ErrorUnifiedMessagingDialPlanNotFound,
2026
2027 // ErrorUnifiedMessagingRequestFailed
2028 /**
2029 * The UnifiedMessaging request failed.
2030 */
2031 ErrorUnifiedMessagingRequestFailed,
2032
2033 // ErrorUnifiedMessagingServerNotFound
2034 /**
2035 * A connection couldn't be made to the Unified Messaging server.
2036 */
2037 ErrorUnifiedMessagingServerNotFound,
2038
2039 // ErrorUnsupportedCulture
2040 /**
2041 * The specified item culture is not supported on this server.
2042 */
2043 ErrorUnsupportedCulture,
2044
2045 // ErrorUnsupportedMapiPropertyType
2046 /**
2047 * The MAPI property type is not supported.
2048 */
2049 ErrorUnsupportedMapiPropertyType,
2050
2051 // ErrorUnsupportedMimeConversion
2052 /**
2053 * MIME conversion is not supported for this item type.
2054 */
2055 ErrorUnsupportedMimeConversion,
2056
2057 // ErrorUnsupportedPathForQuery
2058 /**
2059 * The property can not be used with this type of restriction.
2060 */
2061 ErrorUnsupportedPathForQuery,
2062
2063 // ErrorUnsupportedPathForSortGroup
2064 /**
2065 * The property can not be used for sorting or grouping results.
2066 */
2067 ErrorUnsupportedPathForSortGroup,
2068
2069 // ErrorUnsupportedPropertyDefinition
2070 /**
2071 * PropertyDefinition is not supported in searches.
2072 */
2073 ErrorUnsupportedPropertyDefinition,
2074
2075 // ErrorUnsupportedQueryFilter
2076 /**
2077 * QueryFilter type is not supported.
2078 */
2079 ErrorUnsupportedQueryFilter,
2080
2081 // ErrorUnsupportedRecurrence
2082 /**
2083 * The specified recurrence is not supported.
2084 */
2085 ErrorUnsupportedRecurrence,
2086
2087 // ErrorUnsupportedSubFilter
2088 /**
2089 * Unsupported subfilter type.
2090 */
2091 ErrorUnsupportedSubFilter,
2092
2093 // ErrorUnsupportedTypeForConversion
2094 /**
2095 * Unsupported type for restriction conversion.
2096 */
2097 ErrorUnsupportedTypeForConversion,
2098
2099 // ErrorUpdateDelegatesFailed
2100 /**
2101 * Failed to update one or more delegates.
2102 */
2103 ErrorUpdateDelegatesFailed,
2104
2105 // ErrorUpdatePropertyMismatch
2106 /**
2107 * Property for update does not match property in object.
2108 */
2109 ErrorUpdatePropertyMismatch,
2110
2111 // ErrorUserNotAllowedByPolicy
2112 /**
2113 * Policy does not allow granting permissions to user.
2114 */
2115 ErrorUserNotAllowedByPolicy,
2116
2117 // ErrorUserNotUnifiedMessagingEnabled
2118 /**
2119 * The user isn't enabled for Unified Messaging
2120 */
2121 ErrorUserNotUnifiedMessagingEnabled,
2122
2123 // ErrorUserWithoutFederatedProxyAddress
2124 /**
2125 * The user doesn't have an SMTP proxy address from a federated domain.
2126 */
2127 ErrorUserWithoutFederatedProxyAddress,
2128
2129 // ErrorValueOutOfRange
2130 /**
2131 * The value is out of range.
2132 */
2133 ErrorValueOutOfRange,
2134
2135 // ErrorVirusDetected
2136 /**
2137 * Virus detected in the message.
2138 */
2139 ErrorVirusDetected,
2140
2141 // ErrorVirusMessageDeleted
2142 /**
2143 * The item has been deleted as a result of a virus scan.
2144 */
2145 ErrorVirusMessageDeleted,
2146
2147 // ErrorVoiceMailNotImplemented
2148 /**
2149 * The Voice Mail distinguished folder is not implemented.
2150 */
2151 ErrorVoiceMailNotImplemented,
2152
2153 // ErrorWebRequestInInvalidState
2154 /**
2155 * ErrorWebRequestInInvalidState
2156 */
2157 ErrorWebRequestInInvalidState,
2158
2159 // ErrorWin32InteropError
2160 /**
2161 * ErrorWin32InteropError
2162 */
2163 ErrorWin32InteropError,
2164
2165 // ErrorWorkingHoursSaveFailed
2166 /**
2167 * ErrorWorkingHoursSaveFailed
2168 */
2169 ErrorWorkingHoursSaveFailed,
2170
2171 // ErrorWorkingHoursXmlMalformed
2172 /**
2173 * ErrorWorkingHoursXmlMalformed
2174 */
2175 ErrorWorkingHoursXmlMalformed,
2176
2177 // ErrorWrongServerVersion
2178 /**
2179 * The Client Access server version doesn't match the Mailbox server version
2180 * of the resource that was being accessed. To determine the correct URL to
2181 * use to access the resource, use Autodiscover with the address of the
2182 * resource.
2183 */
2184 ErrorWrongServerVersion,
2185
2186 // ErrorWrongServerVersionDelegate
2187 /**
2188 * The mailbox of the authenticating user and the mailbox of the resource
2189 * being accessed must have the same Mailbox server version.
2190 */
2191 ErrorWrongServerVersionDelegate,
2192
2193 }