ActionContext 构造函数

定义

初始化 ActionContext 类的新实例。

重载

ActionContext()

使用默认属性值初始化 ActionContext 类的新实例。

ActionContext(IContext)

使用指定的上下文参数初始化 ActionContext 类的新实例。

ActionContext(IServiceProvider)

使用指定的服务提供程序参数初始化 ActionContext 类的新实例。

ActionContext(IServiceProvider, IEnumerable<KeyValuePair<String,Object>>)

使用指定的服务提供程序和属性参数初始化 ActionContext 类的新实例。

ActionContext()

使用默认属性值初始化 ActionContext 类的新实例。

public:
 ActionContext();
public ActionContext ();
Public Sub New ()

适用于

ActionContext(IContext)

使用指定的上下文参数初始化 ActionContext 类的新实例。

public:
 ActionContext(Microsoft::SqlServer::Management::Data::IContext ^ context);
public ActionContext (Microsoft.SqlServer.Management.Data.IContext context);
new Microsoft.SqlServer.Management.ActionContext : Microsoft.SqlServer.Management.Data.IContext -> Microsoft.SqlServer.Management.ActionContext
Public Sub New (context As IContext)

参数

context
IContext

表示操作的上下文。

适用于

ActionContext(IServiceProvider)

使用指定的服务提供程序参数初始化 ActionContext 类的新实例。

public:
 ActionContext(IServiceProvider ^ serviceProvider);
public ActionContext (IServiceProvider serviceProvider);
new Microsoft.SqlServer.Management.ActionContext : IServiceProvider -> Microsoft.SqlServer.Management.ActionContext
Public Sub New (serviceProvider As IServiceProvider)

参数

serviceProvider
IServiceProvider

为其他对象提供服务。

适用于

ActionContext(IServiceProvider, IEnumerable<KeyValuePair<String,Object>>)

使用指定的服务提供程序和属性参数初始化 ActionContext 类的新实例。

public:
 ActionContext(IServiceProvider ^ serviceProvider, System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>> ^ properties);
public ActionContext (IServiceProvider serviceProvider, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object>> properties);
new Microsoft.SqlServer.Management.ActionContext : IServiceProvider * seq<System.Collections.Generic.KeyValuePair<string, obj>> -> Microsoft.SqlServer.Management.ActionContext
Public Sub New (serviceProvider As IServiceProvider, properties As IEnumerable(Of KeyValuePair(Of String, Object)))

参数

serviceProvider
IServiceProvider

为其他对象提供服务。

properties
IEnumerable<KeyValuePair<String,Object>>

定义可设置或检索的键/值对。

适用于