2 overrides of GetChars
mscorlib (2)
system\text\decodernls.cs (1)
138
public override unsafe int
GetChars
(byte[] bytes, int byteIndex, int byteCount,
system\text\encoding.cs (1)
1888
public override int
GetChars
(byte[] bytes, int byteIndex, int byteCount,
6 references to GetChars
mscorlib (3)
system\text\decoder.cs (3)
107
GetChars
(byteTemp, 0, 0, charTemp, 0, true);
220
int result =
GetChars
(arrByte, 0, byteCount, arrChar, 0, flush);
288
charsUsed =
GetChars
(bytes, byteIndex, bytesUsed, chars, charIndex, flush);
System (1)
net\System\Net\_CommandStream.cs (1)
604
int numChars = m_Decoder.
GetChars
(state.Buffer, 0, bytesRead, chars, 0, false);
System.Runtime.Serialization (2)
System\Runtime\Serialization\Json\JsonEncodingStreamWrapper.cs (1)
284
int charCount = dec.
GetChars
(buffer, offset, size, chars, 0, false);
System\Xml\EncodingStreamWrapper.cs (1)
721
int charCount = dec.
GetChars
(buffer, offset, size, chars, 0, false);