2 writes to readerQuotas
System.ServiceModel.Web (2)
System\ServiceModel\Channels\WebMessageEncodingBindingElement.cs (2)
37
this.
readerQuotas
= new XmlDictionaryReaderQuotas();
47
this.
readerQuotas
= new XmlDictionaryReaderQuotas();
15 references to readerQuotas
System.ServiceModel.Web (15)
System\ServiceModel\Channels\WebMessageEncodingBindingElement.cs (15)
38
EncoderDefaults.ReaderQuotas.CopyTo(this.
readerQuotas
);
48
elementToBeCloned.
readerQuotas
.CopyTo(this.
readerQuotas
);
129
return this.
readerQuotas
;
190
return (T)(object) this.
readerQuotas
;
207
readerQuotasInstance.SetProperty(AdministrationStrings.MaxArrayLength, this.
readerQuotas
.MaxArrayLength);
208
readerQuotasInstance.SetProperty(AdministrationStrings.MaxBytesPerRead, this.
readerQuotas
.MaxBytesPerRead);
209
readerQuotasInstance.SetProperty(AdministrationStrings.MaxDepth, this.
readerQuotas
.MaxDepth);
210
readerQuotasInstance.SetProperty(AdministrationStrings.MaxNameTableCharCount, this.
readerQuotas
.MaxNameTableCharCount);
211
readerQuotasInstance.SetProperty(AdministrationStrings.MaxStringContentLength, this.
readerQuotas
.MaxStringContentLength);
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)