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