使用c#从Sharepoint 2010用户配置文件中删除值

时间:2016-01-14 07:32:36

标签: sharepoint sharepoint-2010

我可以在sharepoint用户个人资料中添加和编辑值。但是我无法从UP中删除值。例如,我已将用户配置文件属性添加为“认证”,我可以使用C#代码将值添加到UP中。我想使用C#代码从userprofile中删除值。

1 个答案:

答案 0 :(得分:0)

我在我的环境中做过一些测试,这有效:

using (SPSite site = new SPSite("http://xxx/"))
{
    using (SPWeb web = site.OpenWeb())
    {
       try
       {
           SPServiceContext serviceContext = SPServiceContext.GetContext(site);
           UserProfileManager userProfileManager = new UserProfileManager(serviceContext);
           UserProfile userprofile = userProfileManager.GetUserProfile("your login");
           //Set value
           userprofile["Department"].Value = "StackOverflow";
           userprofile.Commit();
           //Remove value
           userprofile["Department"].Value = "";
           userprofile.Commit();
      }
      catch (Exception ex)
      {
          //TO DO
      }
   }
}

如果您向我们提供更多信息,我可以编辑我的代码以获得更详细的样本。