WorkflowServiceAttributes.ValidateMustUnderstand Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta un valore che specifica se il sistema o l'applicazione applica l'elaborazione dell'intestazione MustUnderstand
SOAP.
public:
property bool ValidateMustUnderstand { bool get(); void set(bool value); };
public bool ValidateMustUnderstand { get; set; }
member this.ValidateMustUnderstand : bool with get, set
Public Property ValidateMustUnderstand As Boolean
Valore della proprietà
true
se il sistema deve eseguire l'elaborazione dell'intestazione MustUnderstand
SOAP. In caso contrario false
, che indica che l'applicazione esegue questa elaborazione.
Esempio
Nell'esempio seguente viene illustrato come accedere alla proprietà ValidateMustUnderstand
.
WorkflowServiceAttributes attributes = new WorkflowServiceAttributes();
attributes.ValidateMustUnderstand = false;
Dim attributes As New WorkflowServiceAttributes()
attributes.ValidateMustUnderstand = False
Commenti
Il valore predefinito è true
.