次の方法で共有


WorkflowServiceAttributes.ValidateMustUnderstand プロパティ

定義

システムまたはアプリケーションで SOAP MustUnderstand ヘッダー処理を強制的に行うかどうかを指定する値を取得または設定します。

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

プロパティ値

システムが SOAP ヘッダー true 処理を実行する場合は MustUnderstand、それ以外の場合は false、つまり、アプリケーションがこの処理を実行することを示します。

次の例は、ValidateMustUnderstand プロパティのアクセス方法を示しています。

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

注釈

既定値は true です。

適用対象