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