WorkflowServiceAttributes.ValidateMustUnderstand 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 une valeur qui spécifie si le système ou l'application applique le traitement d'en-tête 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
Valeur de propriété
true
si le système doit exécuter le traitement MustUnderstand
d'en-tête SOAP ; sinon, false
, qui indique que l'application exécute ce traitement.
Exemples
L'exemple suivant montre comment accéder à la propriété ValidateMustUnderstand
.
WorkflowServiceAttributes attributes = new WorkflowServiceAttributes();
attributes.ValidateMustUnderstand = false;
Dim attributes As New WorkflowServiceAttributes()
attributes.ValidateMustUnderstand = False
Remarques
La valeur par défaut est true
.