WorkflowServiceAttributes.ValidateMustUnderstand プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
システムまたはアプリケーションで 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
です。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET