1 write to MaxStringContentLength
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\EncoderHelpers.cs (1)
20bufferedReadQuotas.MaxStringContentLength = EncoderDefaults.BufferedReadDefaultMaxStringContentLength;
12 references to MaxStringContentLength
dotnet-svcutil-lib (12)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBaseReader.cs (3)
1491if (value.Length > _quotas.MaxStringContentLength) 1492XmlExceptionHelper.ThrowMaxStringContentLengthExceeded(this, _quotas.MaxStringContentLength); 1496return base.ReadContentAsString(_quotas.MaxStringContentLength);
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBinaryReader.cs (2)
100if (value.Length > Quotas.MaxStringContentLength) 101XmlExceptionHelper.ThrowMaxStringContentLengthExceeded(this, Quotas.MaxStringContentLength);
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryReader.cs (1)
325return ReadContentAsString(Quotas.MaxStringContentLength);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\BinaryMessageEncodingBindingElement.cs (2)
249if (_readerQuotas.MaxStringContentLength != binary.ReaderQuotas.MaxStringContentLength)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MtomMessageEncodingBindingElement.cs (2)
239if (_readerQuotas.MaxStringContentLength != mtom.ReaderQuotas.MaxStringContentLength)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TextMessageEncodingBindingElement.cs (2)
188if (_readerQuotas.MaxStringContentLength != text.ReaderQuotas.MaxStringContentLength)