如何:使用 Web 服务添加链接和同事
“用户配置文件服务”Web 服务提供用于添加链接和同事的方法。以下代码示例介绍如何使用该 Web 服务远程添加链接和同事。
运行此代码之前,请将 domainname、username 和其他占位符替换为实际值。此外,请在您的 Microsoft Visual Studio 项目中添加对以下内容的 Web 引用:
- Userprofileservice - 该 Web 服务位于 http://<网站 URL>/_vti_bin/userprofileservice.asmx。
示例
using System;
using System.Collections.Generic;
using System.Text;
namespace UserProfileWebServiceApp
{
class Program
{
public static localhost.UserProfileService myService =
new localhost.UserProfileService();
myService.AddLink("Training Resources","http://newhiretraining","Training",UserProfileWebService.
localhost.Privacy.Organization);
myService.AddColleague("domainname\username", "Personal", UserProfileWebService.localhost.Privacy.Private);
}
}