.net 取消outlook中的约会时发生的事件

.net 取消outlook中的约会时发生的事件,.net,.net,我在Outlook addins 2010中工作,我需要在取消Outlook中的约会时进行数据库访问,我已经查看了以前的帖子,找不到任何内容。 我很想知道取消约会时将调用哪个事件?您能发布您迄今为止的尝试吗?请在下面找到我的代码Outlook.MAPIFolder calendar=Application.Session.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderCalendar);Outlook.Items calendarItems=

我在Outlook addins 2010中工作,我需要在取消Outlook中的约会时进行数据库访问,我已经查看了以前的帖子,找不到任何内容。
我很想知道取消约会时将调用哪个事件?

您能发布您迄今为止的尝试吗?请在下面找到我的代码Outlook.MAPIFolder calendar=Application.Session.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderCalendar);Outlook.Items calendarItems=calendar.Items;if(calendar!=null){if(calendarItems!=null){calendarItems.ItemRemove+=calendarItems_ItemRemove;}},我还尝试了删除事件,BeforeDelete事件,删除会议邀请时会遇到这种情况,单击“发送取消”按钮时,我需要该事件