WorkflowRuntime.Name Proprietà

Definizione

Ottiene o imposta il nome associato a 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

Valore della proprietà

String

Nome associato a questo oggetto WorkflowRuntime.

Eccezioni

Si verifica un tentativo di impostare Name su un WorkflowRuntime eliminato.

Si verifica un tentativo di impostare Name mentre il motore di runtime del flusso di lavoro è in esecuzione.

Esempio

Nell'esempio seguente viene illustrato come accedere alla proprietà Name di un oggetto WorkflowRuntime. In questo esempio, il nome del runtime è impostato su " 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"

Commenti

Non è possibile impostare Name mentre il motore di runtime del flusso di lavoro è in esecuzione (IsStarted è true).

Si applica a