我使用的Exchange Web服務(Exchange服務器2007)嘗試用投票按鈕在一封電子郵件通過訪問Exchange Web服務的投票按鈕擴展屬性
我看了這個提問/回答:
Send Voting Email
我有一位使用Outlook 2007的同事給我發送帶有簡單的是/無投票按鈕的電子郵件(Outlook中的按鈕顯示,我沒有發送答案),我可以確認這是我的第一封電子郵件收件箱。
我則使用的EWS來獲取電子郵件,並得到有關電子郵件的擴展屬性,這樣我就可以得到相關的投票按鈕的二進制從而與投票按鈕發送我自己的電子郵件。
這是我的代碼。
ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2007_SP1);
service.Url = new Uri(ConfigurationManager.AppSettings["URL"]);
service.Credentials = new NetworkCredential(
ConfigurationManager.AppSettings["Username"],
ConfigurationManager.AppSettings["Password"],
ConfigurationManager.AppSettings["Domain"]
);
Item foundItem = service.FindItems(WellKnownFolderName.Inbox, new ItemView(10)).Items[0];
ExtendedPropertyDefinition epd = new ExtendedPropertyDefinition(
DefaultExtendedPropertySet.Common,
0x00008520,
MapiPropertyType.Binary
);
object propertyValue = null;
bool outBool;
outBool = foundItem.TryGetProperty(epd, out propertyValue);
outBool
永遠是假的,propertyValue
始終保持爲空。
當我把一個斷點,並期待在foundItem
屬性是正確的其餘部分 - 例如發件人,主題行,發送日期/時間等
另外foundItem.ExtendedProperties
始終具有零計數。這個屬性裏有什麼東西嗎?