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