1 write to _chars
dotnet-svcutil-lib (1)
FrameworkFork\System.Runtime.Serialization\System\Xml\EncodingStreamWrapper.cs (1)
323
_chars
= new char[BufferLength];
10 references to _chars
dotnet-svcutil-lib (10)
FrameworkFork\System.Runtime.Serialization\System\Xml\EncodingStreamWrapper.cs (10)
92
int count = _encoding.GetChars(_bytes, _byteOffset, _byteCount,
_chars
, 0);
94
_byteCount = s_validatingUTF8.GetBytes(
_chars
, 0, count, _bytes, 0);
322
if (
_chars
== null)
629
_byteCount = _stream.Read(_bytes, _byteCount, (
_chars
.Length - 1) * 2);
639
int charCount = _encoding.GetChars(_bytes, 0, _byteCount,
_chars
, 0);
640
_byteCount = Encoding.UTF8.GetBytes(
_chars
, 0, charCount, _bytes, 0);
721
int size =
_chars
.Length < count ?
_chars
.Length : count;
722
int charCount = _dec.GetChars(buffer, offset, size,
_chars
, 0, false);
723
_byteCount = _enc.GetBytes(
_chars
, 0, charCount, _bytes, 0, false);