9 overrides of GetChars
mscorlib (6)
system\text\asciiencoding.cs (1)
301
public override unsafe int
GetChars
(byte[] bytes, int byteIndex, int byteCount,
system\text\encodingnls.cs (1)
274
public override unsafe int
GetChars
(byte[] bytes, int byteIndex, int byteCount,
system\text\unicodeencoding.cs (1)
338
public override unsafe int
GetChars
(byte[] bytes, int byteIndex, int byteCount,
system\text\utf32encoding.cs (1)
339
public override unsafe int
GetChars
(byte[] bytes, int byteIndex, int byteCount,
system\text\utf7encoding.cs (1)
408
public override unsafe int
GetChars
(byte[] bytes, int byteIndex, int byteCount,
system\text\utf8encoding.cs (1)
370
public override unsafe int
GetChars
(byte[] bytes, int byteIndex, int byteCount,
System.Runtime.Serialization (2)
System\Text\Base64Encoding.cs (1)
300
unsafe public override int
GetChars
(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
System\Text\BinHexEncoding.cs (1)
138
unsafe public override int
GetChars
(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
System.Xml (1)
System\Xml\XmlEncoding.cs (1)
214
public override int
GetChars
( byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex ) {
20 references to GetChars
mscorlib (3)
system\text\encoding.cs (3)
1235
GetChars
(bytes, index, count, result, 0);
1297
int result =
GetChars
(arrByte, 0, byteCount, arrChar, 0);
1891
return m_encoding.
GetChars
(bytes, byteIndex, byteCount, chars, charIndex);
PresentationFramework (2)
src\Framework\System\Windows\Documents\RtfToXamlReader.cs (1)
3453
int cch = e.
GetChars
(rgBytes, 0, cb, rgChars, 0);
src\Framework\System\Windows\Documents\XamlToRtfWriter.cs (1)
4027
int cch = e.
GetChars
(rgAnsi, 0, cb, rgChar, 0);
System (4)
net\System\IriHelper.cs (1)
236
int charCount = noFallbackCharUTF8.
GetChars
(bytes, 0, byteCount, unescapedChars, 0);
net\System\Net\HttpListenerRequest.cs (1)
1409
_numChars += _encoding.
GetChars
(_byteBuffer, 0, _numBytes, _charBuffer, _numChars);
net\System\Net\WebUtility.cs (1)
745
_numChars += _encoding.
GetChars
(_byteBuffer, 0, _numBytes, _charBuffer, _numChars);
net\System\UriHelper.cs (1)
479
int charCount = noFallbackCharUTF8.
GetChars
(bytes, 0, byteCount, unescapedChars, 0);
System.Messaging (1)
System\Messaging\Message.cs (1)
2413
Encoding.Unicode.
GetChars
(bytes, 0, len * 2, charBuffer, 0);
System.Runtime.Serialization (5)
System\Runtime\Serialization\Json\JsonEncodingStreamWrapper.cs (2)
227
int charCount = this.encoding.
GetChars
(bytes, 0, byteCount, chars, 0);
495
int count = this.encoding.
GetChars
(bytes, byteOffset, byteCount, chars, 0);
System\Xml\EncodingStreamWrapper.cs (3)
90
int count = this.encoding.
GetChars
(bytes, byteOffset, byteCount, chars, 0);
508
int ccount = localEnc.
GetChars
(buffer, offset, inputCount, chars, 0);
638
int charCount = this.encoding.
GetChars
(bytes, 0, byteCount, chars, 0);
System.ServiceModel (2)
System\ServiceModel\MsmqIntegration\ActiveXSerializer.cs (2)
70
System.Text.Encoding.ASCII.
GetChars
(bytes, 0, size, buffer, 0);
89
System.Text.Encoding.Unicode.
GetChars
(bytes, 0, size * 2, buffer, 0);
System.ServiceModel.Internals (1)
System\Runtime\UrlUtility.cs (1)
414
_numChars += _encoding.
GetChars
(_byteBuffer, 0, _numBytes, _charBuffer, _numChars);
System.Web (2)
Hosting\ISAPIWorkerRequest.cs (1)
288
len = encoding.
GetChars
(_byteBuffer, _offset, len, _charBuffer, 0);
Util\HttpEncoder.cs (1)
947
_numChars += _encoding.
GetChars
(_byteBuffer, 0, _numBytes, _charBuffer, _numChars);