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