Partager via


WorkflowServiceAttributes.UseSynchronizationContext Propriété

Définition

Obtient ou définit une valeur qui spécifie si le contexte de synchronisation actuel doit être utilisé pour sélectionner le thread d’exécution.

public:
 property bool UseSynchronizationContext { bool get(); void set(bool value); };
public bool UseSynchronizationContext { get; set; }
member this.UseSynchronizationContext : bool with get, set
Public Property UseSynchronizationContext As Boolean

Valeur de propriété

Boolean

true si tous les appels au service doivent être exécutés sur le thread spécifié par le SynchronizationContext ; sinon, false.

Exemples

L'exemple suivant montre comment accéder à la propriété UseSynchronizationContext.

WorkflowServiceAttributes attributes = new WorkflowServiceAttributes();
attributes.UseSynchronizationContext = false;
Dim attributes As New WorkflowServiceAttributes()
attributes.UseSynchronizationContext = False

Remarques

La valeur par défaut est true.

S’applique à