1 write to preamble
System.ServiceModel (1)
System\ServiceModel\Channels\MsmqOutputChannel.cs (1)
28
this.
preamble
= DiagnosticUtility.Utility.AllocateByteArray(modeBytes.Length + ClientSingletonSizedEncoder.CalcStartSize(encodedVia, encodedContentType));
8 references to preamble
System.ServiceModel (8)
System\ServiceModel\Channels\MsmqOutputChannel.cs (8)
30
Buffer.BlockCopy(modeBytes, 0, this.
preamble
, 0, modeBytes.Length);
31
ClientSingletonSizedEncoder.EncodeStart(this.
preamble
, modeBytes.Length, encodedVia, encodedContentType);
144
message, int.MaxValue, this.factory.BufferManager,
preamble
.Length);
145
Buffer.BlockCopy(
preamble
, 0, messageData.Array, messageData.Offset -
preamble
.Length,
preamble
.Length);
148
int offset = messageData.Offset -
preamble
.Length;
149
int size = messageData.Count +
preamble
.Length;