10 references to ReaderQuotas
System.ServiceModel.Web (10)
System\ServiceModel\Channels\WebMessageEncodingBindingElement.cs (7)
179
return new WebMessageEncoderFactory(this.WriteEncoding, this.MaxReadPoolSize, this.MaxWritePoolSize, this.
ReaderQuotas
, this.ContentTypeMapper, this.CrossDomainScriptAccessEnabled);
204
if (this.
ReaderQuotas
!= null)
262
if (this.readerQuotas.MaxStringContentLength != other.
ReaderQuotas
.MaxStringContentLength)
266
if (this.readerQuotas.MaxArrayLength != other.
ReaderQuotas
.MaxArrayLength)
270
if (this.readerQuotas.MaxBytesPerRead != other.
ReaderQuotas
.MaxBytesPerRead)
274
if (this.readerQuotas.MaxDepth != other.
ReaderQuotas
.MaxDepth)
278
if (this.readerQuotas.MaxNameTableCharCount != other.
ReaderQuotas
.MaxNameTableCharCount)
System\ServiceModel\Configuration\WebMessageEncodingElement.cs (1)
113
ApplyConfiguration(this.ReaderQuotas, binding.
ReaderQuotas
);
System\ServiceModel\WebHttpBinding.cs (2)
123
get { return webMessageEncodingBindingElement.
ReaderQuotas
; }
130
value.CopyTo(webMessageEncodingBindingElement.
ReaderQuotas
);