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)
92int count = _encoding.GetChars(_bytes, _byteOffset, _byteCount, _chars, 0); 94_byteCount = s_validatingUTF8.GetBytes(_chars, 0, count, _bytes, 0); 322if (_chars == null) 629_byteCount = _stream.Read(_bytes, _byteCount, (_chars.Length - 1) * 2); 639int charCount = _encoding.GetChars(_bytes, 0, _byteCount, _chars, 0); 640_byteCount = Encoding.UTF8.GetBytes(_chars, 0, charCount, _bytes, 0); 721int size = _chars.Length < count ? _chars.Length : count; 722int charCount = _dec.GetChars(buffer, offset, size, _chars, 0, false); 723_byteCount = _enc.GetBytes(_chars, 0, charCount, _bytes, 0, false);