WSDualHttpBinding.ReaderQuotas プロパティ

定義

このバインドで構成されたエンドポイントによって処理できる SOAP メッセージの複雑さに関する制約を取得または設定します。

public:
 property System::Xml::XmlDictionaryReaderQuotas ^ ReaderQuotas { System::Xml::XmlDictionaryReaderQuotas ^ get(); void set(System::Xml::XmlDictionaryReaderQuotas ^ value); };
public System.Xml.XmlDictionaryReaderQuotas ReaderQuotas { get; set; }
member this.ReaderQuotas : System.Xml.XmlDictionaryReaderQuotas with get, set
Public Property ReaderQuotas As XmlDictionaryReaderQuotas

プロパティ値

複雑さの制約を指定する XmlDictionaryReaderQuotas

次の例は、 ReaderQuotas プロパティを取得する方法を示しています。

XmlDictionaryReaderQuotas readerQuotas =
    binding.ReaderQuotas;
Dim readerQuotas As XmlDictionaryReaderQuotas = binding.ReaderQuotas

注釈

複雑さの制約には、メッセージ内の文字列コンテンツの最大要素深度や最大長などの項目が含まれます。 制約は、メッセージの複雑さを使用してエンドポイント処理リソースを関連付けようとするサービス拒否 (DOS) 攻撃から保護します。

適用対象