[方法] Web サービスを使用してリンクおよび仕事仲間を追加する
ユーザー プロファイル サービス Web サービスには、リンクおよび仕事仲間を追加する方法が用意されています。以下のコード サンプルは、Web サービスを使用してリンクおよび仕事仲間をリモートで追加する方法を示しています。
このコードを実行する前に、domainname、username、および他のプレースホルダを実際の値に置き換えます。また、Web 参照を Microsoft Visual Studio プロジェクトの以下の場所に追加します。
- 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);
}
}
See Also
タスク
[方法] Web サービスを使用して 2 つのユーザー プロファイルで共通するものを見つける