1 write to Value
System.ServiceModel (1)
System\ServiceModel\Channels\NativeMsmqMessage.cs (1)
290this.Value = value;
12 references to Value
System.ServiceModel (12)
System\ServiceModel\Channels\Msmq4PoisonHandler.cs (1)
314this.retryQueueForPeek.TryMoveMessage(this.retryQueueMessage.LookupId.Value, this.mainQueueForMove, MsmqTransactionMode.Single);
System\ServiceModel\Channels\MsmqDecodeHelper.cs (3)
65long lookupId = msmqMessage.LookupId.Value; 178long lookupId = msmqMessage.LookupId.Value; 240receiveContext = receiveContextManager.CreateMsmqReceiveContext(msmqMessage.LookupId.Value);
System\ServiceModel\Channels\MsmqDefaultLockingQueue.cs (3)
143if (!this.lockMap.TryGetValue(message.LookupId.Value, out entry)) 145this.lockMap.Add(message.LookupId.Value, new TransactionLookupEntry(message.LookupId.Value, internalTrans));
System\ServiceModel\Channels\MsmqInputChannelBase.cs (2)
174message.Properties[MsmqReceiveContext.Name] = this.receiveContextManager.CreateMsmqReceiveContext(msmqMessage.LookupId.Value); 242message.Properties[MsmqReceiveContext.Name] = this.receiveContextManager.CreateMsmqReceiveContext(msmqMessage.LookupId.Value);
System\ServiceModel\Channels\MsmqMessageProperty.cs (1)
20this.lookupId = msmqMessage.LookupId.Value;
System\ServiceModel\Channels\MsmqSubqueueLockingQueue.cs (2)
147lookupId = emptyMessage.lookupId.Value; 341lockQueue.TryMoveMessage(message.lookupId.Value, this.mainQueueForMove, MsmqTransactionMode.None);