9 overrides of GetChars
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\XmlEncoding.cs (3)
40
public override int
GetChars
(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
176
public override int
GetChars
(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
413
public override int
GetChars
(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Text\DecoderNLS.cs (1)
80
public override int
GetChars
(byte[] bytes, int byteIndex, int byteCount,
src\libraries\System.Private.CoreLib\src\System\Text\Encoding.cs (1)
1240
public override int
GetChars
(byte[] bytes, int byteIndex, int byteCount,
System.Private.Xml (3)
System\Xml\XmlEncoding.cs (3)
37
public override int
GetChars
(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
175
public override int
GetChars
(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
386
public override int
GetChars
(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
System.Text.Encoding.CodePages (1)
System\Text\DecoderNLS.cs (1)
113
public override unsafe int
GetChars
(byte[] bytes, int byteIndex, int byteCount,
26 references to GetChars
dotnet-svcutil-lib (2)
FrameworkFork\System.Runtime.Serialization\System\Xml\ValueHandle.cs (2)
710
actualCharCount = decoder.
GetChars
(bytes, byteOffset, actualByteCount, chars, charOffset);
741
actualCharCount = decoder.
GetChars
(bytes, byteOffset + actualByteCount, 1, chars, charOffset);
Microsoft.AspNetCore.WebUtilities (3)
HttpRequestStreamReader.cs (3)
272
charsRemaining = _decoder.
GetChars
(
470
_charsRead += _decoder.
GetChars
(
500
_charsRead += _decoder.
GetChars
(
Microsoft.Build (2)
InterningBinaryReader.cs (2)
152
charsRead = _decoder.
GetChars
(rawBuffer, rawPosition, n, charBuffer, 0);
161
charsRead += _decoder.
GetChars
(rawBuffer, rawPosition, n, resultBuffer, charsRead);
Microsoft.Build.Tasks.Core (2)
InterningBinaryReader.cs (2)
152
charsRead = _decoder.
GetChars
(rawBuffer, rawPosition, n, charBuffer, 0);
161
charsRead += _decoder.
GetChars
(rawBuffer, rawPosition, n, resultBuffer, charsRead);
Microsoft.VisualBasic.Core (3)
Microsoft\VisualBasic\FileIO\FileSystem.vb (1)
2208
Dim CharCount As Integer = m_Decoder.
GetChars
(
Microsoft\VisualBasic\Strings.vb (2)
264
CharCount = dec.
GetChars
(b, 0, 1, c, 0)
270
CharCount = dec.
GetChars
(b, 0, 2, c, 0)
MSBuild (2)
InterningBinaryReader.cs (2)
152
charsRead = _decoder.
GetChars
(rawBuffer, rawPosition, n, charBuffer, 0);
161
charsRead += _decoder.
GetChars
(rawBuffer, rawPosition, n, resultBuffer, charsRead);
MSBuildTaskHost (2)
InterningBinaryReader.cs (2)
152
charsRead = _decoder.
GetChars
(rawBuffer, rawPosition, n, charBuffer, 0);
161
charsRead += _decoder.
GetChars
(rawBuffer, rawPosition, n, resultBuffer, charsRead);
System.Diagnostics.Process (1)
System\Diagnostics\AsyncStreamReader.cs (1)
101
int charLen = _decoder.
GetChars
(_byteBuffer, 0, bytesRead, _charBuffer, 0);
System.IO.Ports (4)
System\IO\Ports\SerialPort.cs (4)
735
_decoder.
GetChars
(_inBuffer, beginReadPos, _readPos - beginReadPos, _oneChar, 0);
791
_decoder.
GetChars
(_inBuffer, _readPos, _readLen - _readPos, _oneChar, 0);
901
_decoder.
GetChars
(_inBuffer, _readPos, bytesToRead, buffer, offset);
965
_decoder.
GetChars
(_inBuffer, lastFullCharPos, foundCharsByteLength + 1, buffer, offset + totalCharsFound);
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\IO\StreamReader.cs (2)
1156
n = _decoder.
GetChars
(tmpByteBuffer, 0, _byteLen, _charBuffer, 0);
1220
n = _decoder.
GetChars
(tmpByteBuffer, 0, _byteLen, _charBuffer, 0);
src\libraries\System.Private.CoreLib\src\System\Text\Decoder.cs (1)
140
return
GetChars
(bytes, byteIndex, byteCount, chars, charIndex);
System.Private.DataContractSerialization (2)
System\Xml\ValueHandle.cs (2)
745
actualCharCount = decoder.
GetChars
(bytes, byteOffset, actualByteCount, chars, charOffset);
776
actualCharCount = decoder.
GetChars
(bytes, byteOffset + actualByteCount, 1, chars, charOffset);