1 write to chars
System.Runtime.Serialization (1)
System\Xml\EncodingStreamWrapper.cs (1)
321
chars
= new char[BufferLength];
10 references to chars
System.Runtime.Serialization (10)
System\Xml\EncodingStreamWrapper.cs (10)
90
int count = this.encoding.GetChars(bytes, byteOffset, byteCount,
chars
, 0);
92
byteCount = ValidatingUTF8.GetBytes(
chars
, 0, count, bytes, 0);
320
if (
chars
== null)
628
byteCount = this.stream.Read(bytes, byteCount, (
chars
.Length - 1) * 2);
638
int charCount = this.encoding.GetChars(bytes, 0, byteCount,
chars
, 0);
639
byteCount = Encoding.UTF8.GetBytes(
chars
, 0, charCount, bytes, 0);
720
int size =
chars
.Length < count ?
chars
.Length : count;
721
int charCount = dec.GetChars(buffer, offset, size,
chars
, 0, false);
722
byteCount = enc.GetBytes(
chars
, 0, charCount, bytes, 0, false);