CallerImpersonationScope クラス
適用対象: CRM 2015 on-prem, CRM Online
Identifies a user as the owner of all data changes made by calls to a Web service.
名前空間: Microsoft.Xrm.Sdk
アセンブリ: Microsoft.Xrm.Sdk (Microsoft.Xrm.Sdk.dll に含まれる)
構文
'宣言
Public NotInheritable Class CallerImpersonationScope
Implements IDisposable
public sealed class CallerImpersonationScope : IDisposable
備考
The specified user does not have to be the same user that instantiated the service. When the CallerImpersonationScope object goes out of scope and is disposed, calls to the service are owned by the original user that instantiated the service.
using (new CallerImpersonationScope(service, userId))
{
// Display information about the logged on user.
Guid effectiveUserId = ((WhoAmIResponse)service.Execute(new WhoAmIRequest())).UserId;
SystemUser systemUser = (SystemUser)service.Retrieve("systemuser", effectiveUserId,
new ColumnSet(new string[] {"firstname", "lastname"}));
Console.WriteLine("Logged on user is {0} {1}.", systemUser.FirstName, systemUser.LastName);
}
継承階層
System.Object
Microsoft.Xrm.Sdk.CallerImpersonationScope
スレッド セーフ
この種類のパブリックな静的 (Visual Basic では Shared) メンバーはスレッド セーフです。インスタンス メンバーがスレッド セーフであることは保証されません。
プラットフォーム
開発プラットフォーム
Windows Vista、Windows Server 2003、および
対象プラットフォーム
Windows Vista、Windows XP
Change History
関連項目
参照
CallerImpersonationScope のメンバー
Microsoft.Xrm.Sdk 名前空間
他のリソース
Send comments about this topic to Microsoft.
© 2014 Microsoft Corporation. All rights reserved.