5 references to GetEncoding
System (1)
net\System\Net\WebHeaderCollection.cs (1)
1151Encoding decoder = Encoding.GetEncoding("utf-8", EncoderFallback.ExceptionFallback,
System.Data.Services (2)
System\Data\Services\HttpProcessUtility.cs (2)
56return Encoding.GetEncoding("ISO-8859-1", new EncoderExceptionFallback(), new DecoderExceptionFallback()); 278result = Encoding.GetEncoding(part.Charset, encoderFallback, decoderFallback);
System.Data.Services.Client (1)
parent\Server\System\Data\Services\HttpProcessUtility.cs (1)
56return Encoding.GetEncoding("ISO-8859-1", new EncoderExceptionFallback(), new DecoderExceptionFallback());
System.ServiceModel (1)
System\ServiceModel\Channels\TransportDefaults.cs (1)
56internal static readonly Encoding Encoding = Encoding.GetEncoding(TextEncoderDefaults.EncodingString, new EncoderExceptionFallback(), new DecoderExceptionFallback());