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