WorkflowServiceAttributes.ConfigurationName 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置用于在应用程序配置文件中定位服务元素的值。
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
属性值
要在配置文件中查找的值。
示例
下面的示例演示如何访问 ConfigurationName
属性。
WorkflowServiceAttributes attributes = new WorkflowServiceAttributes();
attributes.ConfigurationName = "CalculatorService";
Dim attributes As New WorkflowServiceAttributes()
attributes.ConfigurationName = "CalculatorService"
注解
默认值为 null。