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