EnterpriseResource.GetSelf メソッド
現在ログオンしているユーザーを取得します。
名前空間: Microsoft.ProjectServer.Client
アセンブリ: Microsoft.ProjectServer.Client (Microsoft.ProjectServer.Client.dll 内)
構文
'宣言
<RemoteAttribute> _
Public Shared Function GetSelf ( _
Context As ClientRuntimeContext _
) As EnterpriseResource
'使用
Dim Context As ClientRuntimeContext
Dim returnValue As EnterpriseResource
returnValue = EnterpriseResource.GetSelf(Context)
[RemoteAttribute]
public static EnterpriseResource GetSelf(
ClientRuntimeContext Context
)
パラメーター
Context
型: Microsoft.SharePoint.Client.ClientRuntimeContextClientRuntimeContextのオブジェクトです。
戻り値
型: Microsoft.ProjectServer.Client.EnterpriseResource
現在ログオンしているEnterpriseResource 。
例
次の使用例は、アプリケーションのユーザーの名前を取得します。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.ProjectServer.Client;
namespace WhoAmI
{
class Program
{
private const string pwaPath = "https://ServerName/pwa/"; // Change the path for your Project Web App.
private static ProjectContext projContext;
static void Main(string[] args)
{
projContext = new ProjectContext(pwaPath);
// Load the application user, who must be an enterprise resource.
EnterpriseResource self = EnterpriseResource.GetSelf(projContext);
projContext.Load(self);
projContext.ExecuteQuery();
Console.WriteLine("I am: {0}", self.Name);
Console.Write("\nPress any key to exit: ");
Console.ReadKey(false);
}
}
}