WorkflowRuntime.Name 属性

定义

获取或设置与 WorkflowRuntime 关联的名称。

public:
 property System::String ^ Name { System::String ^ get(); void set(System::String ^ value); };
public string Name { get; set; }
member this.Name : string with get, set
Public Property Name As String

属性值

String

与此 WorkflowRuntime 关联的名称。

例外

尝试对释放的 Name 设置 WorkflowRuntime

尝试在工作流运行时引擎运行时设置 Name

示例

下面的示例演示如何访问 Name 对象的 WorkflowRuntime 属性。 在本示例中,运行时的名称设置为“Main Runtime”。

// Create a new WorkflowRuntime
WorkflowRuntime workflowRuntime = new WorkflowRuntime();
// Assign a name to the runtime
workflowRuntime.Name = "Main Runtime";
' Create a new WorkflowRuntime
Dim workflowRuntime As New WorkflowRuntime()
' Assign a name to the runtime
workflowRuntime.Name = "Main Runtime"

注解

在工作流运行时引擎运行 () 时IsStarted true ,无法设置Name

适用于