17 overrides of GetChars
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\XmlEncoding.cs (1)
258
public override int
GetChars
(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
FrameworkFork\System.Runtime.Serialization\System\Text\Base64Encoding.cs (1)
299
unsafe public override int
GetChars
(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
FrameworkFork\System.Runtime.Serialization\System\Text\BinHexEncoding.cs (1)
121
unsafe public override int
GetChars
(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
Roslyn.VisualStudio.Next.UnitTests (1)
Remote\SnapshotSerializationTests.cs (1)
754
public override int
GetChars
(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex) => GetChars(bytes, byteIndex, byteCount, chars, charIndex);
System.Console (1)
src\libraries\Common\src\System\Text\ConsoleEncoding.cs (1)
138
public override int
GetChars
(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
System.Formats.Asn1 (2)
System\Formats\Asn1\AsnCharacterStringEncodings.cs (2)
146
public override int
GetChars
(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
493
public override int
GetChars
(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Text\ASCIIEncoding.cs (1)
547
public override unsafe int
GetChars
(byte[] bytes, int byteIndex, int byteCount,
src\libraries\System.Private.CoreLib\src\System\Text\Latin1Encoding.cs (1)
454
public override unsafe int
GetChars
(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
src\libraries\System.Private.CoreLib\src\System\Text\UnicodeEncoding.cs (1)
270
public override unsafe int
GetChars
(byte[] bytes, int byteIndex, int byteCount,
src\libraries\System.Private.CoreLib\src\System\Text\UTF32Encoding.cs (1)
278
public override unsafe int
GetChars
(byte[] bytes, int byteIndex, int byteCount,
src\libraries\System.Private.CoreLib\src\System\Text\UTF7Encoding.cs (1)
314
public override unsafe int
GetChars
(byte[] bytes, int byteIndex, int byteCount,
src\libraries\System.Private.CoreLib\src\System\Text\UTF8Encoding.cs (1)
498
public override unsafe int
GetChars
(byte[] bytes, int byteIndex, int byteCount,
System.Private.DataContractSerialization (2)
System\Text\Base64Encoding.cs (1)
257
public override unsafe int
GetChars
(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
System\Text\BinHexEncoding.cs (1)
63
public override unsafe int
GetChars
(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
System.Private.Xml (1)
System\Xml\XmlEncoding.cs (1)
257
public override int
GetChars
(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
System.Text.Encoding.CodePages (1)
System\Text\EncodingNLS.cs (1)
222
public override unsafe int
GetChars
(byte[] bytes, int byteIndex, int byteCount,
18 references to GetChars
dotnet-svcutil-lib (4)
FrameworkFork\System.Runtime.Serialization\System\Xml\EncodingStreamWrapper.cs (3)
92
int count = _encoding.
GetChars
(_bytes, _byteOffset, _byteCount, _chars, 0);
510
int ccount = localEnc.
GetChars
(buffer, offset, inputCount, chars, 0);
639
int charCount = _encoding.
GetChars
(_bytes, 0, _byteCount, _chars, 0);
FrameworkFork\System.ServiceModel\Internals\System\Runtime\UrlUtility.cs (1)
422
_numChars += _encoding.
GetChars
(_byteBuffer, 0, _numBytes, _charBuffer, _numChars);
PresentationFramework (2)
System\Windows\Documents\RtfToXamlReader.cs (1)
3395
int cch = e.
GetChars
(rgBytes, 0, cb, rgChars, 0);
System\Windows\Documents\XamlToRtfWriter.cs (1)
4018
int cch = e.
GetChars
(rgAnsi, 0, cb, rgChar, 0);
System.Console (1)
src\libraries\Common\src\System\Text\ConsoleEncoding.cs (1)
140
return _encoding.
GetChars
(bytes, byteIndex, byteCount, chars, charIndex);
System.Formats.Asn1 (1)
System\Formats\Asn1\AsnCharacterStringEncodings.cs (1)
501
return s_latin1Encoding.
GetChars
(bytes, byteIndex, byteCount, chars, charIndex);
System.Net.HttpListener (1)
System\Net\HttpListenerRequest.cs (1)
491
_numChars += _encoding.
GetChars
(_byteBuffer!, 0, _numBytes, _charBuffer, _numChars);
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Net\WebUtility.cs (1)
625
_numChars += _encoding.
GetChars
(_byteBuffer!, 0, _numBytes, _charBuffer, _numChars);
src\libraries\System.Private.CoreLib\src\System\Text\Encoding.cs (3)
807
GetChars
(bytes, index, count, result, 0);
858
int result =
GetChars
(arrByte, 0, byteCount, arrChar, 0);
1246
_encoding.
GetChars
(bytes, byteIndex, byteCount, chars, charIndex);
System.Private.DataContractSerialization (5)
System\Runtime\Serialization\Json\JsonEncodingStreamWrapper.cs (2)
201
int charCount = _encoding!.
GetChars
(_bytes, 0, _byteCount, _chars, 0);
451
int count = _encoding.
GetChars
(_bytes, _byteOffset, _byteCount, _chars, 0);
System\Xml\EncodingStreamWrapper.cs (3)
92
int count = _encoding.
GetChars
(_bytes, _byteOffset, _byteCount, _chars, 0);
472
int ccount = localEnc.
GetChars
(buffer, offset, inputCount, chars, 0);
611
int charCount = _encoding!.
GetChars
(_bytes, 0, _byteCount, _chars, 0);