27 references to EncodedBytes
System.ServiceModel (27)
System\ServiceModel\Channels\FramingChannels.cs (4)
1012
connection.Write(encodedUpgrade.
EncodedBytes
, 0, encodedUpgrade.
EncodedBytes
.Length, true, timeoutHelper.RemainingTime());
1237
encodedUpgrade.
EncodedBytes
, 0, encodedUpgrade.
EncodedBytes
.Length, true, timeoutHelper.RemainingTime(),
System\ServiceModel\Channels\FramingEncoders.cs (21)
208
return via.
EncodedBytes
.Length + contentType.
EncodedBytes
.Length;
213
Buffer.BlockCopy(via.
EncodedBytes
, 0, buffer, offset, via.
EncodedBytes
.Length);
214
Buffer.BlockCopy(contentType.
EncodedBytes
, 0, buffer, offset + via.
EncodedBytes
.Length, contentType.
EncodedBytes
.Length);
342
return via.
EncodedBytes
.Length + contentType.
EncodedBytes
.Length;
347
Buffer.BlockCopy(via.
EncodedBytes
, 0, buffer, offset, via.
EncodedBytes
.Length);
348
Buffer.BlockCopy(contentType.
EncodedBytes
, 0, buffer, offset + via.
EncodedBytes
.Length, contentType.
EncodedBytes
.Length);
378
return via.
EncodedBytes
.Length + contentType.
EncodedBytes
.Length;
383
Buffer.BlockCopy(via.
EncodedBytes
, 0, buffer, offset, via.
EncodedBytes
.Length);
384
Buffer.BlockCopy(contentType.
EncodedBytes
, 0, buffer, offset + via.
EncodedBytes
.Length, contentType.
EncodedBytes
.Length);
System\ServiceModel\Channels\InitialServerConnectionReader.cs (2)
247
connection.Write(encodedFault.
EncodedBytes
, 0, encodedFault.
EncodedBytes
.Length, true, timeoutHelper.RemainingTime());