8 types derived from DecoderNLS
mscorlib (8)
system\text\dbcscodepageencoding.cs (1)
1178internal class DBCSDecoder : DecoderNLS
system\text\gb18030encoding.cs (1)
849internal sealed class GB18030Decoder : System.Text.DecoderNLS, ISerializable
system\text\isciiencoding.cs (1)
791internal class ISCIIDecoder : DecoderNLS
system\text\iso2022encoding.cs (1)
1900internal class ISO2022Decoder : System.Text.DecoderNLS
system\text\unicodeencoding.cs (1)
2017private class Decoder : System.Text.DecoderNLS, ISerializable
system\text\utf32encoding.cs (1)
1231internal class UTF32Decoder : DecoderNLS
system\text\utf7encoding.cs (1)
900private class Decoder : DecoderNLS, ISerializable
system\text\utf8encoding.cs (1)
2496internal class UTF8Decoder : DecoderNLS, ISerializable
2 instantiations of DecoderNLS
mscorlib (2)
system\text\asciiencoding.cs (1)
1013return new DecoderNLS(this);
system\text\encodingnls.cs (1)
366return new DecoderNLS(this);
29 references to DecoderNLS
mscorlib (29)
system\io\binaryreader.cs (2)
345DecoderNLS decoder = m_decoder as DecoderNLS;
system\text\asciiencoding.cs (2)
756internal override unsafe int GetCharCount(byte* bytes, int count, DecoderNLS decoder) 830char* chars, int charCount, DecoderNLS decoder)
system\text\dbcscodepageencoding.cs (2)
784internal override unsafe int GetCharCount(byte* bytes, int count, DecoderNLS baseDecoder) 931char* chars, int charCount, DecoderNLS baseDecoder)
system\text\encoding.cs (5)
1208internal virtual unsafe int GetCharCount(byte* bytes, int count, DecoderNLS decoder) 1322char* chars, int charCount, DecoderNLS decoder) 1628internal void ThrowCharsOverflow(DecoderNLS decoder, bool nothingDecoded) 1914DecoderNLS decoder; 1924internal unsafe EncodingCharBuffer(Encoding enc, DecoderNLS decoder, char* charStart, int charCount,
system\text\gb18030encoding.cs (2)
447internal override unsafe int GetCharCount(byte* bytes, int count, DecoderNLS baseDecoder) 455char* chars, int charCount, DecoderNLS baseDecoder)
system\text\isciiencoding.cs (2)
349internal override unsafe int GetCharCount(byte* bytes, int count, DecoderNLS baseDecoder) 363char* chars, int charCount, DecoderNLS baseDecoder)
system\text\iso2022encoding.cs (2)
329internal override unsafe int GetCharCount(byte* bytes, int count, DecoderNLS baseDecoder) 341char* chars, int charCount, DecoderNLS baseDecoder)
system\text\latin1encoding.cs (2)
396internal override unsafe int GetCharCount(byte* bytes, int count, DecoderNLS decoder) 409char* chars, int charCount, DecoderNLS decoder)
system\text\sbcscodepageencoding.cs (2)
657internal override unsafe int GetCharCount(byte* bytes, int count, DecoderNLS decoder) 742char* chars, int charCount, DecoderNLS decoder)
system\text\unicodeencoding.cs (2)
1152internal override unsafe int GetCharCount(byte* bytes, int count, DecoderNLS baseDecoder) 1492char* chars, int charCount, DecoderNLS baseDecoder )
system\text\utf32encoding.cs (2)
758internal override unsafe int GetCharCount(byte* bytes, int count, DecoderNLS baseDecoder) 902char* chars, int charCount, DecoderNLS baseDecoder)
system\text\utf7encoding.cs (2)
659internal override unsafe int GetCharCount(byte* bytes, int count, DecoderNLS baseDecoder) 670char* chars, int charCount, DecoderNLS baseDecoder)
system\text\utf8encoding.cs (2)
1292internal override unsafe int GetCharCount(byte* bytes, int count, DecoderNLS baseDecoder) 1688char* chars, int charCount, DecoderNLS baseDecoder)