NetMsmqBinding.ReaderQuotas プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
このバインドに関連付けられる XmlDictionaryReaderQuotas を取得または設定します。
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。
例外
値が null
です。
例
次のコードは、XmlDictionaryReaderQuotas プロパティを設定する方法を示しています。
NetMsmqBinding binding = new NetMsmqBinding();
XmlDictionaryReaderQuotas readerQuotas = new XmlDictionaryReaderQuotas();
readerQuotas.MaxArrayLength = 25 * 1024;
binding.ReaderQuotas = readerQuotas;
注釈
XmlDictionaryReaderQuotas オブジェクトは、バインディングを使用して構成されるエンドポイントにより処理可能な、SOAP メッセージの複雑さに対する制約を定義します。 これらの制約には、maxArrayLength
、maxBytesPerRead
、maxDepth
、maxNameTableCharCount
、および maxStringContentLength
が含まれます。 これらの値は、サービス拒否攻撃の防止に役立ちます。 詳細については、「XmlDictionaryReaderQuotas」を参照してください。