2 writes to lockQueueForReceive
System.ServiceModel (2)
System\ServiceModel\Channels\MsmqSubqueueLockingQueue.cs (2)
47this.lockQueueForReceive = new MsmqQueue(this.lockQueueName, UnsafeNativeMethods.MQ_RECEIVE_ACCESS, UnsafeNativeMethods.MQ_DENY_RECEIVE_SHARE); 118this.lockQueueForReceive = new MsmqQueue(this.lockQueueName, UnsafeNativeMethods.MQ_RECEIVE_ACCESS, UnsafeNativeMethods.MQ_DENY_RECEIVE_SHARE);
8 references to lockQueueForReceive
System.ServiceModel (8)
System\ServiceModel\Channels\MsmqSubqueueLockingQueue.cs (8)
72return this.lockQueueForReceive; 102this.lockQueueForReceive.EnsureOpen(); 114this.lockQueueForReceive.Dispose(); 167lookupIdReceiveResult = this.lockQueueForReceive.TryReceiveByLookupId(lookupId, message, MsmqTransactionMode.None, UnsafeNativeMethods.MQ_LOOKUP_PEEK_CURRENT); 195receiveResult = this.lockQueueForReceive.TryReceiveByLookupId(lookupId, emptyMessage, MsmqTransactionMode.CurrentOrNone); 222moveResult = this.lockQueueForReceive.TryMoveMessage(lookupId, this.mainQueueForMove, MsmqTransactionMode.None); 253this.CollectLocks(this.lockQueueForReceive); 256this.lockQueueForReceive.CloseQueue();