WorkflowServiceAttributes.ConfigurationName Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the value used to locate the service element in an application configuration file.
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
Property Value
The value to locate in the configuration file.
Examples
The following example demonstrates how to access the ConfigurationName
property.
WorkflowServiceAttributes attributes = new WorkflowServiceAttributes();
attributes.ConfigurationName = "CalculatorService";
Dim attributes As New WorkflowServiceAttributes()
attributes.ConfigurationName = "CalculatorService"
Remarks
The default value is null.