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>>

설정하거나 검색할 수 있는 키/값 쌍을 정의합니다.

적용 대상