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;
61
offset += IntEncoder.Encode(valueByteCount,
_encodedBytes
, offset);
62
Encoding.UTF8.GetBytes(value, 0, value.Length,
_encodedBytes
, offset);
63
SetEncodedBytes(
_encodedBytes
);
69
get { return
_encodedBytes
; }
79
return (
_encodedBytes
[0] << 16) |
80
(
_encodedBytes
[
_encodedBytes
.Length / 2] << 8) |
81
_encodedBytes
[
_encodedBytes
.Length - 1];
97
byte[] otherBytes = other.
_encodedBytes
;
98
if (
_encodedBytes
.Length != otherBytes.Length)
101
for (int i = 0; i <
_encodedBytes
.Length; i++)
103
if (
_encodedBytes
[i] != otherBytes[i])