ユーザー プロパティにデータを保存し、メールを .msg ファイルに書き込み、(後で) .msg ファイルをリロードしてユーザー プロパティを読み取ろうとしています。
問題は、ファイルをリロードした後、ユーザー プロパティがなくなったことです。
Outlook 2010 32 ビットを使用しています
動作を示すコードは次のとおりです。
Outlook.MailItem originalItem = ((MailItemWrapper)this.Item)._item;
var path = System.IO.Path.GetTempFileName() + ".msg";
var propName = "ActionId123456789";
// Set a user property "ActionId" with value "test"
var ps = originalItem.UserProperties;
var p = ps.Find(propName);
if (p == null)
p = ps.Add(propName, Outlook.OlUserPropertyType.olText, Type.Missing);
p.Value = "test";
// Save to a temp file
originalItem.Save(); // --> I also tried without this line
originalItem.SaveAs(path);
// Chech the the property is correctly set
p = originalItem.UserProperties[propName];
if (p != null)
Console.WriteLine(p.Value); // ---> Show 'test'
// Open the temp file
Outlook.MailItem newItem = AddinModule.CurrentInstance.OutlookApp.Session.OpenSharedItem(path) as Outlook.MailItem;
// Check that the property still exists
p = newItem.UserProperties[propName];
if (p != null)
Console.WriteLine(p.Value); // ---> Not executed: p is NULL !
誰かがこれを行う方法を知っていますか?
の代わりに を使っOpenSharedItem
てメールを開こうとしProcess.Start
たのですが、この場合は user プロパティも null です...
ところで、このコードはテスト サンプルであるため、dispose
すべての COM 参照が適切に行われるわけではありません。