WorkflowDescription.Name Property

 

Gets or sets name of this workflow.

Namespace:   Microsoft.Workflow.Client
Assembly:  Microsoft.Workflow.Client (in Microsoft.Workflow.Client.dll)

Syntax

[DataMemberAttribute(EmitDefaultValue = false)]
public string Name {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    set;
}
public:
[DataMemberAttribute(EmitDefaultValue = false)]
property String^ Name {
    [CompilerGeneratedAttribute]
    String^ get();
    [CompilerGeneratedAttribute]
    void set(String^ value);
}
[<DataMemberAttribute(EmitDefaultValue = false)>]
member Name : string with get, set
<DataMemberAttribute(EmitDefaultValue := False)>
Public Property Name As String

Property Value

Type: System.String

String that represents the name of this workflow.

Remarks

Name of the workflow cannot be changed after the workflow has been published. Name of the workflow must be unique within the scope.

See Also

WorkflowDescription Class
Microsoft.Workflow.Client Namespace

Return to top