如何:更改用于输入多值属性的默认分隔符
此代码示例更改用户在用户界面中输入属性的多个值时使用的默认分隔符。逗号是默认的分隔符字符。管理员还可以直接在用户界面中更改分隔符字符。
运行该代码示例前,用实际值替换 servername 和 PublishedPapers。此外,还应在 Microsoft Visual Studio 项目中添加对以下项目的引用:
Microsoft.Office.Server
Microsoft.SharePoint
System.Web
示例
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Office.Server;
using Microsoft.Office.Server.Administration;
using Microsoft.Office.Server.UserProfiles;
using Microsoft.SharePoint;
using System.Web;
namespace UserProfilesApp
{
class Program
{
static void Main(string[] args)
{
using (SPSite site = new SPSite("https://servername"))
{
ServerContext context =
ServerContext.GetContext(site);
UserProfileManager profileManager = new
UserProfileManager(context);
PropertyCollection pc = profileManager.Properties;
Property property =
pc.GetPropertyByName("PublishedPapers");
property.Separator = MultiValueSeparator.Semicolon;
property.Commit();
}
}
}
}