9 overrides of GetChars
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\XmlEncoding.cs (3)
40public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex) 176public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex) 413public 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)
80public override int GetChars(byte[] bytes, int byteIndex, int byteCount,
src\libraries\System.Private.CoreLib\src\System\Text\Encoding.cs (1)
1240public override int GetChars(byte[] bytes, int byteIndex, int byteCount,
System.Private.Xml (3)
System\Xml\XmlEncoding.cs (3)
37public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex) 175public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex) 386public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
System.Text.Encoding.CodePages (1)
System\Text\DecoderNLS.cs (1)
113public 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)
710actualCharCount = decoder.GetChars(bytes, byteOffset, actualByteCount, chars, charOffset); 741actualCharCount = decoder.GetChars(bytes, byteOffset + actualByteCount, 1, chars, charOffset);
Microsoft.AspNetCore.WebUtilities (3)
HttpRequestStreamReader.cs (3)
272charsRemaining = _decoder.GetChars( 470_charsRead += _decoder.GetChars( 500_charsRead += _decoder.GetChars(
Microsoft.Build (2)
InterningBinaryReader.cs (2)
152charsRead = _decoder.GetChars(rawBuffer, rawPosition, n, charBuffer, 0); 161charsRead += _decoder.GetChars(rawBuffer, rawPosition, n, resultBuffer, charsRead);
Microsoft.Build.Tasks.Core (2)
InterningBinaryReader.cs (2)
152charsRead = _decoder.GetChars(rawBuffer, rawPosition, n, charBuffer, 0); 161charsRead += _decoder.GetChars(rawBuffer, rawPosition, n, resultBuffer, charsRead);
Microsoft.VisualBasic.Core (3)
Microsoft\VisualBasic\FileIO\FileSystem.vb (1)
2208Dim CharCount As Integer = m_Decoder.GetChars(
Microsoft\VisualBasic\Strings.vb (2)
264CharCount = dec.GetChars(b, 0, 1, c, 0) 270CharCount = dec.GetChars(b, 0, 2, c, 0)
MSBuild (2)
InterningBinaryReader.cs (2)
152charsRead = _decoder.GetChars(rawBuffer, rawPosition, n, charBuffer, 0); 161charsRead += _decoder.GetChars(rawBuffer, rawPosition, n, resultBuffer, charsRead);
MSBuildTaskHost (2)
InterningBinaryReader.cs (2)
152charsRead = _decoder.GetChars(rawBuffer, rawPosition, n, charBuffer, 0); 161charsRead += _decoder.GetChars(rawBuffer, rawPosition, n, resultBuffer, charsRead);
System.Diagnostics.Process (1)
System\Diagnostics\AsyncStreamReader.cs (1)
101int 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)
1156n = _decoder.GetChars(tmpByteBuffer, 0, _byteLen, _charBuffer, 0); 1220n = _decoder.GetChars(tmpByteBuffer, 0, _byteLen, _charBuffer, 0);
src\libraries\System.Private.CoreLib\src\System\Text\Decoder.cs (1)
140return GetChars(bytes, byteIndex, byteCount, chars, charIndex);
System.Private.DataContractSerialization (2)
System\Xml\ValueHandle.cs (2)
745actualCharCount = decoder.GetChars(bytes, byteOffset, actualByteCount, chars, charOffset); 776actualCharCount = decoder.GetChars(bytes, byteOffset + actualByteCount, 1, chars, charOffset);