如何:修改用户配置文件数据

上次修改时间: 2010年1月27日

适用范围: SharePoint Server 2010

修改用户配置文件存储中的用户配置文件是开发人员最常见的任务之一。代码示例向您演示了如何使用对象模型修改用户配置文件数据。

备注

在 Microsoft SharePoint Server 2010 中,您还可以通过用户配置文件服务 Web 服务来更新用户配置文件数据。有关详细信息,请参阅如何:使用 Web 服务修改用户配置文件数据

运行代码示例之前,请将 domainname、username 和 nnnnnnnnnn 替换为实际的值。此外,还应在 Microsoft Visual Studio 项目中添加对以下项目的引用:

  • Microsoft.Office.Server

  • Microsoft.Office.Server.UserProfiles

  • Microsoft.SharePoint

  • System.Web

示例

本示例使用对象模型来修改某些用户配置文件属性。

//Updates a user profile
//Creates a user profile. Obtains the property values from the default 
//domain controller or the master connection that is configured on the 
//server
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SharePoint.Administration;
using Microsoft.Office.Server.UserProfiles;
using Microsoft.SharePoint;
using Microsoft.Office.Server;
using System.Web;

namespace UserProfilesApp
{
    class Program
    {
        static void Main(string[] args)
        {
            try
            {
                using (SPSite site = new SPSite("https://servername"))
                {
                    SPServiceContext context = SPServiceContext.GetContext(site);
                    UserProfileManager profileManager = new UserProfileManager(context);
                    string sAccount = "domainname\\username";
                    UserProfile u = profileManager.GetUserProfile(sAccount);
                    u[PropertyConstants.HomePhone].Value = "nnnnnnnnnn";
                    u[PropertyConstants.CellPhone].Value = "nnnnnnnnnn";
                    u.Commit();



                }
            }
            catch (UserNotFoundException exception)
            {
                Console.WriteLine(exception.ToString());
            }

        }
    }


}

请参阅

任务

如何:使用 Web 服务修改用户配置文件数据