4 types derived from DecoderNLS
System.Text.Encoding.CodePages (4)
System\Text\DBCSCodePageEncoding.cs (1)
1161internal sealed class DBCSDecoder : DecoderNLS
System\Text\GB18030Encoding.cs (1)
786internal sealed class GB18030Decoder : DecoderNLS
System\Text\ISCIIEncoding.cs (1)
731internal sealed class ISCIIDecoder : DecoderNLS
System\Text\ISO2022Encoding.cs (1)
1821internal sealed class ISO2022Decoder : System.Text.DecoderNLS
1 instantiation of DecoderNLS
System.Text.Encoding.CodePages (1)
System\Text\EncodingNLS.cs (1)
307return new DecoderNLS(this);
15 references to DecoderNLS
System.Text.Encoding.CodePages (15)
System\Text\DBCSCodePageEncoding.cs (2)
767public override unsafe int GetCharCount(byte* bytes, int count, DecoderNLS? baseDecoder) 916char* chars, int charCount, DecoderNLS? baseDecoder)
System\Text\EncodingCharBuffer.cs (2)
15private readonly DecoderNLS? _decoder; 22internal unsafe EncodingCharBuffer(EncodingNLS enc, DecoderNLS? decoder, char* charStart, int charCount, byte* byteStart, int byteCount)
System\Text\EncodingNLS.cs (3)
40public abstract unsafe int GetCharCount(byte* bytes, int count, DecoderNLS? decoder); 41public abstract unsafe int GetChars(byte* bytes, int byteCount, char* chars, int charCount, DecoderNLS? decoder); 330internal void ThrowCharsOverflow(DecoderNLS? decoder, bool nothingDecoded)
System\Text\GB18030Encoding.cs (2)
391public override unsafe int GetCharCount(byte* bytes, int count, DecoderNLS? baseDecoder) 398char* chars, int charCount, DecoderNLS? baseDecoder)
System\Text\ISCIIEncoding.cs (2)
301public override unsafe int GetCharCount(byte* bytes, int count, DecoderNLS? baseDecoder) 314char* chars, int charCount, DecoderNLS? baseDecoder)
System\Text\ISO2022Encoding.cs (2)
274public override unsafe int GetCharCount(byte* bytes, int count, DecoderNLS? baseDecoder) 285char* chars, int charCount, DecoderNLS? baseDecoder)
System\Text\SBCSCodePageEncoding.cs (2)
657public override unsafe int GetCharCount(byte* bytes, int count, DecoderNLS? decoder) 746char* chars, int charCount, DecoderNLS? decoder)