다음을 통해 공유


WorkflowServiceAttributes.ConfigurationName 속성

정의

애플리케이션 구성 파일에서 서비스 요소를 찾는 데 사용되는 값을 가져오거나 설정합니다.

public:
 property System::String ^ ConfigurationName { System::String ^ get(); void set(System::String ^ value); };
public string ConfigurationName { get; set; }
member this.ConfigurationName : string with get, set
Public Property ConfigurationName As String

속성 값

String

구성 파일에서 찾을 값입니다.

예제

다음 예제에서는 ConfigurationName 속성에 액세스하는 방법을 보여 줍니다.

WorkflowServiceAttributes attributes = new WorkflowServiceAttributes();
attributes.ConfigurationName = "CalculatorService";
Dim attributes As New WorkflowServiceAttributes()
attributes.ConfigurationName = "CalculatorService"

설명

기본값은 null입니다.

적용 대상