2 instantiations of TextMessageEncoderFactory
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TextMessageEncodingBindingElement.cs (1)
150
return new
TextMessageEncoderFactory
(MessageVersion, WriteEncoding, this.MaxReadPoolSize, this.MaxWritePoolSize, this.ReaderQuotas);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportDefaults.cs (1)
296
return new
TextMessageEncoderFactory
(MessageVersion.Default, TextEncoderDefaults.Encoding, EncoderDefaults.MaxReadPoolSize, EncoderDefaults.MaxWritePoolSize, EncoderDefaults.ReaderQuotas);
9 references to TextMessageEncoderFactory
dotnet-svcutil-lib (9)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TextMessageEncoder.cs (9)
74
mediaType =
TextMessageEncoderFactory
.Soap12MediaType;
78
mediaType =
TextMessageEncoderFactory
.Soap11MediaType;
82
mediaType =
TextMessageEncoderFactory
.XmlMediaType;
99
Encoding[] readEncodings =
TextMessageEncoderFactory
.GetSupportedEncodings();
286
_mediaType =
TextMessageEncoderFactory
.GetMediaType(version);
287
_contentType =
TextMessageEncoderFactory
.GetContentType(_mediaType, writeEncoding);
290
_contentEncodingMap =
TextMessageEncoderFactory
.Soap12Content;
296
_contentEncodingMap =
TextMessageEncoderFactory
.Soap11Content;
300
_contentEncodingMap =
TextMessageEncoderFactory
.SoapNoneContent;