16 references to ReaderQuotas
dotnet-svcutil-lib (16)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\BinaryMessageEncodingBindingElement.cs (7)
213
this.
ReaderQuotas
,
249
if (_readerQuotas.MaxStringContentLength != binary.
ReaderQuotas
.MaxStringContentLength)
251
if (_readerQuotas.MaxArrayLength != binary.
ReaderQuotas
.MaxArrayLength)
253
if (_readerQuotas.MaxBytesPerRead != binary.
ReaderQuotas
.MaxBytesPerRead)
255
if (_readerQuotas.MaxDepth != binary.
ReaderQuotas
.MaxDepth)
257
if (_readerQuotas.MaxNameTableCharCount != binary.
ReaderQuotas
.MaxNameTableCharCount)
270
return (!EncoderDefaults.IsDefaultReaderQuotas(this.
ReaderQuotas
));
FrameworkFork\System.ServiceModel\System\ServiceModel\NetHttpBinding.cs (2)
161
readerQuotas.CopyTo(_binaryMessageEncodingBindingElement.
ReaderQuotas
);
290
this.ReaderQuotas = binary.
ReaderQuotas
;
FrameworkFork\System.ServiceModel\System\ServiceModel\NetHttpsBinding.cs (1)
117
readerQuotas.CopyTo(_binaryMessageEncodingBindingElement.
ReaderQuotas
);
FrameworkFork\System.ServiceModel\System\ServiceModel\NetNamedPipeBinding.cs (3)
96
get { return _encoding.
ReaderQuotas
; }
101
value.CopyTo(_encoding.
ReaderQuotas
);
150
this.ReaderQuotas = encoding.
ReaderQuotas
;
FrameworkFork\System.ServiceModel\System\ServiceModel\NetTcpBinding.cs (3)
101
get { return _encoding.
ReaderQuotas
; }
106
value.CopyTo(_encoding.
ReaderQuotas
);
191
this.ReaderQuotas = encoding.
ReaderQuotas
;