24 references to ReaderQuotas
System.ServiceModel (21)
System\ServiceModel\Administration\EndpointInstanceProvider.cs (2)
398
if (null != specificElement.
ReaderQuotas
)
400
FillReaderQuotas(instance, specificElement.
ReaderQuotas
);
System\ServiceModel\Channels\TextMessageEncodingBindingElement.cs (7)
166
return new TextMessageEncoderFactory(MessageVersion, WriteEncoding, this.MaxReadPoolSize, this.MaxWritePoolSize, this.
ReaderQuotas
);
223
if (this.readerQuotas.MaxStringContentLength != text.
ReaderQuotas
.MaxStringContentLength)
225
if (this.readerQuotas.MaxArrayLength != text.
ReaderQuotas
.MaxArrayLength)
227
if (this.readerQuotas.MaxBytesPerRead != text.
ReaderQuotas
.MaxBytesPerRead)
229
if (this.readerQuotas.MaxDepth != text.
ReaderQuotas
.MaxDepth)
231
if (this.readerQuotas.MaxNameTableCharCount != text.
ReaderQuotas
.MaxNameTableCharCount)
245
return (!EncoderDefaults.IsDefaultReaderQuotas(this.
ReaderQuotas
));
System\ServiceModel\Configuration\TextMessageEncodingElement.cs (2)
28
this.ReaderQuotas.ApplyConfiguration(binding.
ReaderQuotas
);
63
this.ReaderQuotas.InitializeFrom(binding.
ReaderQuotas
);
System\ServiceModel\HttpBindingBase.cs (3)
148
return this.textEncoding.
ReaderQuotas
;
158
value.CopyTo(this.textEncoding.
ReaderQuotas
);
351
this.ReaderQuotas = text.
ReaderQuotas
;
System\ServiceModel\WSDualHttpBinding.cs (3)
139
get { return textEncoding.
ReaderQuotas
; }
144
value.CopyTo(textEncoding.
ReaderQuotas
);
250
this.ReaderQuotas = text.
ReaderQuotas
;
System\ServiceModel\WSHttpBindingBase.cs (3)
125
get { return textEncoding.
ReaderQuotas
; }
130
value.CopyTo(textEncoding.
ReaderQuotas
);
239
this.ReaderQuotas = text.
ReaderQuotas
;
System\ServiceModel\WSMessageEncoding.cs (1)
26
textEncoding.
ReaderQuotas
.CopyTo(mtomEncoding.ReaderQuotas);
System.ServiceModel.Channels (3)
System\ServiceModel\UdpBinding.cs (3)
57
this.ReaderQuotas = encoding.
ReaderQuotas
;
136
get { return this.textEncoding.
ReaderQuotas
; }
143
value.CopyTo(this.textEncoding.
ReaderQuotas
);