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