4 writes to Value
System.ServiceModel (4)
System\ServiceModel\Channels\MsmqOutputMessage.cs (3)
174
this.bodyType.
Value
= value;
198
this.senderIdType.
Value
= value;
209
this.timeToReachQueue.
Value
= value;
System\ServiceModel\Channels\NativeMsmqMessage.cs (1)
264
this.
Value
= value;
32 references to Value
System.ServiceModel (32)
System\ServiceModel\Channels\Msmq4PoisonHandler.cs (1)
294
DateTime lastMoveTime = MsmqDateTime.ToDateTime(handler.retryQueueMessage.LastMoveTime.
Value
);
System\ServiceModel\Channels\MsmqChannelListenerBase.cs (2)
185
certificate = new X509Certificate2(msmqMessage.SenderCertificate.GetBufferCopy(msmqMessage.SenderCertificateLength.
Value
));
204
byte[] sid = msmqMessage.SenderId.GetBufferCopy(msmqMessage.SenderIdLength.
Value
);
System\ServiceModel\Channels\MsmqDecodeHelper.cs (3)
66
int size = msmqMessage.BodyLength.
Value
;
180
int size = msmqMessage.BodyLength.
Value
;
372
int size = msmqMessage.BodyLength.
Value
;
System\ServiceModel\Channels\MsmqInputMessage.cs (6)
73
bufferSizeQuota.Alloc(this.senderIdLength.
Value
);
74
this.senderId.EnsureBufferLength(this.senderIdLength.
Value
);
76
bufferSizeQuota.Alloc(this.senderCertificateLength.
Value
);
77
this.senderCertificate.EnsureBufferLength(this.senderCertificateLength.
Value
);
79
bufferSizeQuota.Alloc(this.bodyLength.
Value
);
80
this.body.EnsureBufferLength(this.bodyLength.
Value
);
System\ServiceModel\Channels\MsmqMessageProperty.cs (2)
22
this.abortCount = msmqMessage.AbortCount.
Value
;
24
this.moveCount = msmqMessage.MoveCount.
Value
;
System\ServiceModel\Channels\MsmqQueue.cs (1)
179
int packedVersion = properties.Version.
Value
;
System\ServiceModel\MsmqIntegration\MsmqIntegrationInputMessage.cs (17)
76
this.adminQueue.EnsureValueLength(this.adminQueueLength.
Value
);
77
this.responseFormatName.EnsureValueLength(this.responseFormatNameLength.
Value
);
78
this.destinationQueue.EnsureValueLength(this.destinationQueueLength.
Value
);
79
this.label.EnsureValueLength(this.labelLength.
Value
);
81
bufferSizeQuota.Alloc(this.extensionLength.
Value
);
82
this.extension.EnsureBufferLength(this.extensionLength.
Value
);
89
property.AdministrationQueue = GetQueueName(this.adminQueue.GetValue(this.adminQueueLength.
Value
));
90
property.AppSpecific = this.appSpecific.
Value
;
91
property.ArrivedTime = MsmqDateTime.ToDateTime(this.arrivedTime.
Value
).ToLocalTime();
93
property.BodyType = this.bodyType.
Value
;
95
property.DestinationQueue = GetQueueName(this.destinationQueue.GetValue(this.destinationQueueLength.
Value
));
96
property.Extension = this.extension.GetBufferCopy(this.extensionLength.
Value
);
98
property.Label = this.label.GetValue(this.labelLength.
Value
);
108
property.ResponseQueue = GetQueueName(this.responseFormatName.GetValue(this.responseFormatNameLength.
Value
));
109
property.SenderId = this.SenderId.GetBufferCopy(this.SenderIdLength.
Value
);
110
property.SentTime = MsmqDateTime.ToDateTime(this.sentTime.
Value
).ToLocalTime();
111
property.InternalSetTimeToReachQueue(MsmqDuration.ToTimeSpan(this.timeToReachQueue.
Value
));