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