WorkflowServiceAttributes.UseSynchronizationContext Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene o establece un valor que especifica si utilizar el contexto de sincronización actual para elegir el subproceso de ejecución.
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 de propiedad
true
si todas las llamadas al servicio deben ejecutarse en el subproceso especificado por el SynchronizationContext; de lo contrario, false
.
Ejemplos
En el ejemplo siguiente se muestra cómo se obtiene acceso a la propiedad UseSynchronizationContext
.
WorkflowServiceAttributes attributes = new WorkflowServiceAttributes();
attributes.UseSynchronizationContext = false;
Dim attributes As New WorkflowServiceAttributes()
attributes.UseSynchronizationContext = False
Comentarios
El valor predeterminado es true
.