3 writes to encodedBytes
System.ServiceModel (3)
System\ServiceModel\Channels\FramingEncoders.cs (3)
50
this.
encodedBytes
= encodedBytes;
57
encodedBytes
= DiagnosticUtility.Utility.AllocateByteArray(checked(1 + sizeByteCount + valueByteCount));
73
this.
encodedBytes
= encodedBytes;
14 references to encodedBytes
System.ServiceModel (14)
System\ServiceModel\Channels\FramingEncoders.cs (14)
58
encodedBytes
[0] = (byte)recordType;
60
offset += IntEncoder.Encode(valueByteCount,
encodedBytes
, offset);
61
Encoding.UTF8.GetBytes(value, 0, value.Length,
encodedBytes
, offset);
62
SetEncodedBytes(
encodedBytes
);
68
get { return
encodedBytes
; }
78
return (
encodedBytes
[0] << 16) |
79
(
encodedBytes
[
encodedBytes
.Length / 2] << 8) |
80
encodedBytes
[
encodedBytes
.Length - 1];
96
byte[] otherBytes = other.
encodedBytes
;
97
if (this.
encodedBytes
.Length != otherBytes.Length)
100
for (int i = 0; i <
encodedBytes
.Length; i++)
102
if (
encodedBytes
[i] != otherBytes[i])