10 writes to _byteCount
dotnet-svcutil-lib (10)
FrameworkFork\System.Runtime.Serialization\System\Xml\EncodingStreamWrapper.cs (10)
94_byteCount = s_validatingUTF8.GetBytes(_chars, 0, count, _bytes, 0); 249_byteCount = preserve; 314_byteCount += read; 333_byteCount = 0; 629_byteCount = _stream.Read(_bytes, _byteCount, (_chars.Length - 1) * 2); 640_byteCount = Encoding.UTF8.GetBytes(_chars, 0, charCount, _bytes, 0); 648_byteCount -= count; 669_byteCount++; 690_byteCount += 2; 723_byteCount = _enc.GetBytes(_chars, 0, charCount, _bytes, 0, false);
15 references to _byteCount
dotnet-svcutil-lib (15)
FrameworkFork\System.Runtime.Serialization\System\Xml\EncodingStreamWrapper.cs (15)
83CheckUTF8DeclarationEncoding(_bytes, _byteOffset, _byteCount, declEnc, expectedEnc); 92int count = _encoding.GetChars(_bytes, _byteOffset, _byteCount, _chars, 0); 99CheckUTF8DeclarationEncoding(_bytes, 0, _byteCount, declEnc, expectedEnc); 307count -= _byteCount; 310int read = _stream.Read(_bytes, _byteOffset + _byteCount, count); 611if (_byteCount == 0 && _encodingCode == SupportedEncoding.UTF8) 622if (_byteCount == 0) 629_byteCount = _stream.Read(_bytes, _byteCount, (_chars.Length - 1) * 2); 632if (_byteCount == 0) 639int charCount = _encoding.GetChars(_bytes, 0, _byteCount, _chars, 0); 644if (_byteCount < count) 645count = _byteCount; 659int max = _byteOffset + _byteCount; 662if ((_byteCount % 2) != 0) 724_stream.Write(_bytes, 0, _byteCount);