5 overrides of GetCharCount
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\XmlEncoding.cs (1)
30
public override int
GetCharCount
(byte[] bytes, int index, int count, bool flush)
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Text\DecoderNLS.cs (1)
49
public override unsafe int
GetCharCount
(byte[] bytes, int index, int count, bool flush)
src\libraries\System.Private.CoreLib\src\System\Text\Encoding.cs (1)
1216
public override int
GetCharCount
(byte[] bytes, int index, int count, bool flush) =>
System.Private.Xml (1)
System\Xml\XmlEncoding.cs (1)
27
public override int
GetCharCount
(byte[] bytes, int index, int count, bool flush)
System.Text.Encoding.CodePages (1)
System\Text\DecoderNLS.cs (1)
80
public override unsafe int
GetCharCount
(byte[] bytes, int index, int count, bool flush)
3 references to GetCharCount
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Text\Decoder.cs (2)
76
char[] charTemp = new char[
GetCharCount
(byteTemp, 0, 0, true)];
243
if (
GetCharCount
(bytes, byteIndex, bytesUsed, flush) <= charCount)
src\libraries\System.Private.CoreLib\src\System\Text\TranscodingStream.cs (1)
249
int charCount = _thisDecoder.
GetCharCount
(Array.Empty<byte>(), 0, 0, flush: true);