次の方法で共有


IPluginExecutionContext インターフェイス

適用対象: CRM 2015 on-prem, CRM Online

Defines the contextual information passed to a plug-in at run-time. Contains information that describes the run-time environment that the plug-in is executing in, information related to the execution pipeline, and entity business information.

名前空間: Microsoft.Xrm.Sdk
アセンブリ: Microsoft.Xrm.Sdk (Microsoft.Xrm.Sdk.dll に含まれる)

構文

'宣言
Public Interface IPluginExecutionContext
    Inherits IExecutionContext
public interface IPluginExecutionContext : IExecutionContext

備考

The execution context is passed to a plug-in at run time in the System.IServiceProvider parameter of the Execute method. You can obtain the context from the service provider as shown in the following plug-in code.

// Obtain the execution context from the service provider.
IPluginExecutionContext context = (IPluginExecutionContext)
    serviceProvider.GetService(typeof(IPluginExecutionContext));

プラットフォーム

開発プラットフォーム

Windows Vista、Windows Server 2003、および

対象プラットフォーム

Windows Vista、Windows XP

Change History

関連項目

参照

IPluginExecutionContext のメンバー
Microsoft.Xrm.Sdk 名前空間

他のリソース

Understand the Data Context Passed to a Plug-in
Plug-ins for Extending Microsoft Dynamics CRM

Send comments about this topic to Microsoft.
© 2014 Microsoft Corporation. All rights reserved.