Created
September 25, 2009 03:47
-
-
Save jsjohnst/193279 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://msdn.microsoft.com/en-us/library/dd633667.aspx | |
http://msdn.microsoft.com/en-us/library/exchangewebservices.calendaritemupdateoperationtype.aspx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// From /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/ExchangeWebServices | |
@interface EWSDeleteItemType : EWSBaseRequestType | |
{ | |
NSArray *ItemIds; | |
int DeleteType; | |
int SendMeetingCancellations; | |
int AffectedTaskOccurrences; | |
} | |
+ (id)definition; | |
- (void)dealloc; | |
@property(nonatomic) int AffectedTaskOccurrences; // @synthesize AffectedTaskOccurrences; | |
@property(nonatomic) int SendMeetingCancellations; // @synthesize SendMeetingCancellations; | |
@property(nonatomic) int DeleteType; // @synthesize DeleteType; | |
@property(retain, nonatomic) NSArray *ItemIds; // @synthesize ItemIds; | |
@end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<soap:Body> | |
<m:DeleteItem DeleteType="MoveToDeletedItems" SendMeetingCancellations="SendToNone"> | |
<m:ItemIds> | |
<t:ItemId Id="AAMkA=" ChangeKey="DwAAA" /> | |
</m:ItemIds> | |
</m:DeleteItem> | |
</soap:Body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<soap:Body> | |
<m:DeleteItem DeleteType="MoveToDeletedItems" SendMeetingCancellations="SendToAllAndSaveCopy"> | |
<m:ItemIds> | |
<t:ItemId Id="AAMkA=" ChangeKey="DwAAA" /> | |
</m:ItemIds> | |
</m:DeleteItem> | |
</soap:Body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment