WorkflowRuntime.Name Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit le nom associé au 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
Valeur de propriété
Nom associé à ce WorkflowRuntime.
Exceptions
Une tentative de définition de Name sur un WorkflowRuntime disposé se produit.
Une tentative de définition de la propriété Name se produit lorsque le moteur d'exécution de workflow s'exécute.
Exemples
L'exemple suivant montre comment accéder à la propriété Name d'un objet WorkflowRuntime. Dans cet exemple, le nom de l'exécution a pour valeur "exécution Main".
// 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"
Remarques
Vous ne pouvez pas définir Name pendant que le moteur d’exécution du flux de travail est en cours d’exécution (IsStarted est true
).