다음을 통해 공유


NetMsmqBinding.ReaderQuotas 속성

정의

이 바인딩과 연결된 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

이 바인딩에 연결된 XmlDictionaryReaderQuotas입니다.

예외

값이 null인 경우

예제

다음 코드에서는 XmlDictionaryReaderQuotas 속성을 설정하는 방법을 보여 줍니다.

NetMsmqBinding binding = new NetMsmqBinding();
XmlDictionaryReaderQuotas readerQuotas = new XmlDictionaryReaderQuotas();
readerQuotas.MaxArrayLength = 25 * 1024;
binding.ReaderQuotas = readerQuotas;

설명

XmlDictionaryReaderQuotas 개체는 바인딩으로 구성된 엔드포인트에서 처리할 수 있는 SOAP 메시지의 복잡성에 대한 제약 조건을 정의합니다. 이러한 제약 조건에는 maxArrayLength, maxBytesPerRead, maxDepth, maxNameTableCharCountmaxStringContentLength가 있습니다. 이러한 값은 서비스 거부 공격을 막는 데 도움이 됩니다. 자세한 내용은 XmlDictionaryReaderQuotas를 참조하세요.

적용 대상