11 instantiations of BufferProperty
System.ServiceModel (11)
System\ServiceModel\Channels\MsmqInputMessage.cs (4)
46
this.body = new
BufferProperty
(this, UnsafeNativeMethods.PROPID_M_BODY,
49
this.messageId = new
BufferProperty
(this, UnsafeNativeMethods.PROPID_M_MSGID,
53
this.senderId = new
BufferProperty
(this, UnsafeNativeMethods.PROPID_M_SENDERID, initialSenderIdSize);
55
this.senderCertificate = new
BufferProperty
(this, UnsafeNativeMethods.PROPID_M_SENDER_CERT,
System\ServiceModel\Channels\MsmqOutputMessage.cs (3)
44
this.body = new
BufferProperty
(this, UnsafeNativeMethods.PROPID_M_BODY, bodySize);
45
this.messageId = new
BufferProperty
(this, UnsafeNativeMethods.PROPID_M_MSGID, UnsafeNativeMethods.PROPID_M_MSGID_SIZE);
129
this.senderCert = new
BufferProperty
(this, UnsafeNativeMethods.PROPID_M_SENDER_CERT);
System\ServiceModel\MsmqIntegration\MsmqIntegrationInputMessage.cs (2)
55
this.correlationId = new
BufferProperty
(this, UnsafeNativeMethods.PROPID_M_CORRELATIONID,
59
this.extension = new
BufferProperty
(this, UnsafeNativeMethods.PROPID_M_EXTENSION,
System\ServiceModel\MsmqIntegration\MsmqIntegrationOutputChannel.cs (2)
227
this.correlationId = new
BufferProperty
(this, UnsafeNativeMethods.PROPID_M_CORRELATIONID, MsmqMessageId.FromString(property.CorrelationId));
230
this.extension = new
BufferProperty
(this, UnsafeNativeMethods.PROPID_M_EXTENSION, property.Extension);
23 references to BufferProperty
System.ServiceModel (23)
System\ServiceModel\Channels\MsmqDiagnostics.cs (6)
210
static void DatagramSentOrReceived(NativeMsmqMessage.
BufferProperty
messageId, Message message, int traceCode, string traceDescription)
234
public static void DatagramReceived(NativeMsmqMessage.
BufferProperty
messageId, Message message)
239
public static void DatagramSent(NativeMsmqMessage.
BufferProperty
messageId, Message message)
244
static Guid MessageIdToGuid(NativeMsmqMessage.
BufferProperty
messageId)
432
public static void SessiongramSent(string sessionId, NativeMsmqMessage.
BufferProperty
messageId, int numberOfMessages)
450
public static void SessiongramReceived(string sessionId, NativeMsmqMessage.
BufferProperty
messageId, int numberOfMessages)
System\ServiceModel\Channels\MsmqInputMessage.cs (8)
9
BufferProperty
senderId;
14
BufferProperty
senderCertificate;
17
BufferProperty
body;
19
BufferProperty
messageId;
83
public
BufferProperty
SenderId
108
public
BufferProperty
SenderCertificate
123
public
BufferProperty
Body
133
public
BufferProperty
MessageId
System\ServiceModel\Channels\MsmqOutputMessage.cs (5)
20
BufferProperty
body;
29
BufferProperty
senderCert;
32
BufferProperty
messageId;
143
public
BufferProperty
Body
148
public
BufferProperty
MessageId
System\ServiceModel\MsmqIntegration\MsmqIntegrationInputMessage.cs (2)
18
BufferProperty
correlationId;
21
BufferProperty
extension;
System\ServiceModel\MsmqIntegration\MsmqIntegrationOutputChannel.cs (2)
195
BufferProperty
correlationId;
196
BufferProperty
extension;