1 write to chars
System.Runtime.Serialization (1)
System\Runtime\Serialization\Json\JsonEncodingStreamWrapper.cs (1)
441
chars
= new char[BufferLength];
10 references to chars
System.Runtime.Serialization (10)
System\Runtime\Serialization\Json\JsonEncodingStreamWrapper.cs (10)
215
byteCount = this.stream.Read(bytes, byteCount, (
chars
.Length - 1) * 2);
227
int charCount = this.encoding.GetChars(bytes, 0, byteCount,
chars
, 0);
228
byteCount = Encoding.UTF8.GetBytes(
chars
, 0, charCount, bytes, 0);
283
int size =
chars
.Length < count ?
chars
.Length : count;
284
int charCount = dec.GetChars(buffer, offset, size,
chars
, 0, false);
285
byteCount = enc.GetBytes(
chars
, 0, charCount, bytes, 0, false);
439
if (
chars
== null)
495
int count = this.encoding.GetChars(bytes, byteOffset, byteCount,
chars
, 0);
497
byteCount = ValidatingUTF8.GetBytes(
chars
, 0, count, bytes, 0);