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。

適用於