记住我对outlook addin的选择

时间:2010-07-27 14:09:44

标签: c#

如何为outlook addin创建“记住我”选项。(在textBox中) 我不想将它与数据库联系起来。 我只想在登录到outlook插件时将用户凭据保存在他/她的计算机上。 此插件将使用Web服务将用户连接到站点。

2 个答案:

答案 0 :(得分:0)

对于用户/应用程序特定的注册表访问,您可以使用以下功能:

Application.UserAppDataRegistry.SetValue

Application.UserAppDataRegistry.GetValue

答案 1 :(得分:-2)

您可以使用活动项目上的CustomDocumentProperties来存储和检索用户属性。

DocumentProperties docProps = ( DocumentProperties )this.Application.ActiveProject.CustomDocumentProperties;
Microsoft.Office.Core.DocumentProperty projNameProp = docProps.Add( builtinPropertyName, false, Microsoft.Office.Core.MsoDocProperties.msoPropertyTypeString, value, missing );
projNameProp.Value = value;