Partilhar via


WorkflowServiceAttributes.UseSynchronizationContext Propriedade

Definição

Obtém ou define um valor que especifica se o contexto de sincronização atual deve ser usado para escolher o thread de execução.

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

Valor da propriedade

Boolean

true se todas as chamadas para o serviço deverem ser executadas no thread especificado pelo SynchronizationContext; caso contrário, false.

Exemplos

O exemplo a seguir demonstra como acessar a UseSynchronizationContext propriedade.

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

Comentários

O valor padrão é true.

Aplica-se a