10 references to Queue
System.ServiceModel (10)
System\ServiceModel\Channels\Msmq3PoisonHandler.cs (1)
55MsmqDefaultLockingQueue queue = this.receiver.Queue as MsmqDefaultLockingQueue;
System\ServiceModel\Channels\Msmq4PoisonHandler.cs (3)
56Fx.Assert(this.receiver.Queue is MsmqSubqueueLockingQueue, "Queue must be MsmqSubqueueLockingQueue"); 57this.lockQueueForReceive = ((MsmqSubqueueLockingQueue)this.receiver.Queue).LockQueueForReceive; 60this.mainQueue = this.receiver.Queue;
System\ServiceModel\Channels\MsmqInputChannelBase.cs (1)
28this.receiveContextManager = new MsmqReceiveContextLockManager(this.receiveParameters.ReceiveContextSettings, this.receiver.Queue);
System\ServiceModel\Channels\MsmqInputSessionChannelListener.cs (1)
30this.receiveContextManager = new MsmqReceiveContextLockManager(this.ReceiveParameters.ReceiveContextSettings, this.receiver.Queue);
System\ServiceModel\Channels\MsmqReceiveHelper.cs (4)
185this.DropOrRejectReceivedMessage(this.Queue, messageProperty, reject); 268MsmqQueue.ReceiveResult receiveResult = this.Queue.TryReceive(msmqMessage, timeout, transactionMode); 394receiver.Queue.BeginTryReceive(msmqMessage, timeout, onCompleteStatic, this); 407receiveResult = receiver.Queue.EndTryReceive(result);