3 writes to _encodedBytes
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\FramingEncoders.cs (3)
51_encodedBytes = encodedBytes; 58_encodedBytes = Fx.AllocateByteArray(checked(1 + sizeByteCount + valueByteCount)); 74_encodedBytes = encodedBytes;
14 references to _encodedBytes
dotnet-svcutil-lib (14)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\FramingEncoders.cs (14)
59_encodedBytes[0] = (byte)recordType; 61offset += IntEncoder.Encode(valueByteCount, _encodedBytes, offset); 62Encoding.UTF8.GetBytes(value, 0, value.Length, _encodedBytes, offset); 63SetEncodedBytes(_encodedBytes); 69get { return _encodedBytes; } 79return (_encodedBytes[0] << 16) | 80(_encodedBytes[_encodedBytes.Length / 2] << 8) | 81_encodedBytes[_encodedBytes.Length - 1]; 97byte[] otherBytes = other._encodedBytes; 98if (_encodedBytes.Length != otherBytes.Length) 101for (int i = 0; i < _encodedBytes.Length; i++) 103if (_encodedBytes[i] != otherBytes[i])