ExternalDataExchangeService 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ExternalDataExchangeService 클래스의 새 인스턴스를 초기화합니다.
오버로드
ExternalDataExchangeService() |
ExternalDataExchangeService 클래스의 새 인스턴스를 초기화합니다. |
ExternalDataExchangeService(NameValueCollection) |
ExternalDataExchangeService 클래스의 새 인스턴스를 초기화합니다. |
ExternalDataExchangeService(String) |
ExternalDataExchangeService 클래스의 새 인스턴스를 초기화합니다. |
ExternalDataExchangeService(ExternalDataExchangeServiceSection) |
ExternalDataExchangeService 클래스의 새 인스턴스를 초기화합니다. |
ExternalDataExchangeService()
ExternalDataExchangeService 클래스의 새 인스턴스를 초기화합니다.
public:
ExternalDataExchangeService();
public ExternalDataExchangeService ();
Public Sub New ()
예제
다음 예제에서는 ExternalDataExchangeService 클래스의 인스턴스를 만드는 방법을 보여 줍니다. 이 예제는 Ordering State Machine SDK 샘플에 포함되어 있습니다. 자세한 내용은 Ordering State Machine 샘플합니다.
string IWorkflowCompilerOptionsService.RootNamespace
{
get
{
return string.Empty;
}
}
Public ReadOnly Property RootNamespace() As String Implements IWorkflowCompilerOptionsService.RootNamespace
Get
Return String.Empty
End Get
End Property
적용 대상
ExternalDataExchangeService(NameValueCollection)
ExternalDataExchangeService 클래스의 새 인스턴스를 초기화합니다.
public:
ExternalDataExchangeService(System::Collections::Specialized::NameValueCollection ^ parameters);
public ExternalDataExchangeService (System.Collections.Specialized.NameValueCollection parameters);
new System.Workflow.Activities.ExternalDataExchangeService : System.Collections.Specialized.NameValueCollection -> System.Workflow.Activities.ExternalDataExchangeService
Public Sub New (parameters As NameValueCollection)
매개 변수
- parameters
- NameValueCollection
서비스를 구성하는 데 사용되는 매개 변수의 컬렉션입니다. 허용되는 값은 빈 컬렉션 또는 ConfigurationSection
키만 들어 있는 컬렉션입니다.
적용 대상
ExternalDataExchangeService(String)
ExternalDataExchangeService 클래스의 새 인스턴스를 초기화합니다.
public:
ExternalDataExchangeService(System::String ^ configSectionName);
public ExternalDataExchangeService (string configSectionName);
new System.Workflow.Activities.ExternalDataExchangeService : string -> System.Workflow.Activities.ExternalDataExchangeService
Public Sub New (configSectionName As String)
매개 변수
- configSectionName
- String
이 서비스의 원하는 구성이 포함된 구성 섹션의 이름입니다.
적용 대상
ExternalDataExchangeService(ExternalDataExchangeServiceSection)
ExternalDataExchangeService 클래스의 새 인스턴스를 초기화합니다.
public:
ExternalDataExchangeService(System::Workflow::Activities::ExternalDataExchangeServiceSection ^ settings);
public ExternalDataExchangeService (System.Workflow.Activities.ExternalDataExchangeServiceSection settings);
new System.Workflow.Activities.ExternalDataExchangeService : System.Workflow.Activities.ExternalDataExchangeServiceSection -> System.Workflow.Activities.ExternalDataExchangeService
Public Sub New (settings As ExternalDataExchangeServiceSection)
매개 변수
- settings
- ExternalDataExchangeServiceSection
이 서비스에 대한 설정이 포함된 구성 섹션입니다.