5 writes to decoder
dotnet-svcutil-lib (5)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (4)
3253_ps.decoder = new SafeAsciiDecoder(); 3262_ps.decoder = new UTF16Decoder(false); 3265_ps.decoder = new UTF16Decoder(true); 3268_ps.decoder = encoding.GetDecoder();
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImplHelpers.cs (1)
78decoder = null;
7 references to decoder
dotnet-svcutil-lib (7)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (7)
3277if ((newEncoding.WebName != _ps.encoding.WebName || _ps.decoder is SafeAsciiDecoder) && !_afterResetState) 3351Debug.Assert(_ps.stream != null && _ps.decoder != null && _ps.bytes != null); 3543Debug.Assert(_ps.stream != null && _ps.decoder != null && _ps.bytes != null); 3558_ps.decoder.Convert(_ps.bytes, _ps.bytePos, bytesCount, _ps.chars, _ps.charsUsed, maxCharsCount, false, out bytesCount, out charsCount, out completed); 3583_ps.decoder.Convert(_ps.bytes, _ps.bytePos + bytesDecoded, 1, _ps.chars, _ps.charsUsed + charsDecoded, 1, false, out bDec, out chDec, out completed); 3711if (_ps.decoder is SafeAsciiDecoder) 3938if (_ps.decoder is SafeAsciiDecoder)