ActivityDescription.Name Property

 

Gets or sets Name of this activity.

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 activity.

Remarks

Name of the activity cannot be changed once an activity has been published.

See Also

ActivityDescription Class
Microsoft.Workflow.Client Namespace

Return to top