9 overrides of GetCharCount
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\XmlEncoding.cs (3)
25public override int GetCharCount(byte[] bytes, int index, int count) 171public override int GetCharCount(byte[] bytes, int index, int count) 406public override int GetCharCount(byte[] bytes, int index, int count)
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Text\DecoderNLS.cs (1)
44public override int GetCharCount(byte[] bytes, int index, int count)
src\libraries\System.Private.CoreLib\src\System\Text\Encoding.cs (1)
1213public override int GetCharCount(byte[] bytes, int index, int count) =>
System.Private.Xml (3)
System\Xml\XmlEncoding.cs (3)
22public override int GetCharCount(byte[] bytes, int index, int count) 170public override int GetCharCount(byte[] bytes, int index, int count) 379public override int GetCharCount(byte[] bytes, int index, int count)
System.Text.Encoding.CodePages (1)
System\Text\DecoderNLS.cs (1)
75public override unsafe int GetCharCount(byte[] bytes, int index, int count)
12 references to GetCharCount
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\FileIO\FileSystem.vb (1)
2200Dim ExpectedCharCount As Integer = m_Decoder.GetCharCount(ByteBuffer, ByteBufferStartIndex, Count)
System.IO.Ports (8)
System\IO\Ports\SerialPort.cs (8)
724if (_decoder.GetCharCount(_inBuffer, _readPos, CachedBytesToRead) != 0) 731} while (_decoder.GetCharCount(_inBuffer, beginReadPos, _readPos - beginReadPos) < 1); 786} while (_decoder.GetCharCount(_inBuffer, _readPos, _readLen - _readPos) < 1); 833int charsWeAlreadyHave = _decoder.GetCharCount(_inBuffer, _readPos, CachedBytesToRead); // full chars already in our buffer 935currentCharsFound = _decoder.GetCharCount(_inBuffer, lastFullCharPos, currentBytesToExamine); 959} while (_decoder.GetCharCount(_inBuffer, lastFullCharPos, foundCharsByteLength) == currentCharsFound); 1026int numCharsReceived = localDecoder.GetCharCount(bytesReceived, 0, bytesReceived.Length); 1042} while (localDecoder.GetCharCount(bytesReceived, 0, lastFullCharIndex) == numCharsReceived);
System.Net.Requests (1)
System\Net\CommandStream.cs (1)
597char[] chars = new char[_decoder.GetCharCount(state.Buffer, 0, bytesRead)];
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Text\Decoder.cs (2)
91return GetCharCount(bytes, index, count); 107return GetCharCount(arrbyte, 0, count);