1 write to queueName
System.Workflow.Runtime (1)
WorkflowQueue.cs (1)
22this.queueName = queueName;
18 references to queueName
System.Workflow.Runtime (18)
WorkflowQueue.cs (18)
34EventQueueState qState = qService.GetQueueState(this.queueName); 40qService.NotifyAsynchronousSubscribers(this.queueName, qState, qState.Messages.Count); 48bool removed = qService.GetQueueState(this.queueName).AsynchronousListeners.Remove(subscriber); 68EventQueueState qState = qService.GetQueueState(this.queueName); 78qService.NotifyAsynchronousSubscribers(this.queueName, qState, qState.Messages.Count); 89bool removed = qService.GetQueueState(this.queueName).AsynchronousListeners.Remove(subscriber); 106qService.GetQueueState(this.queueName).SynchronousListeners.Add(new ActivityExecutorDelegateInfo<QueueEventArgs>(value, qService.CallingActivity)); 116qService.GetQueueState(this.queueName).SynchronousListeners.Remove(new ActivityExecutorDelegateInfo<QueueEventArgs>(value, qService.CallingActivity)); 127qService.GetQueueState(this.queueName).SynchronousListeners.Add(new ActivityExecutorDelegateInfo<QueueEventArgs>(eventListener, qService.CallingActivity)); 137qService.GetQueueState(this.queueName).SynchronousListeners.Remove(new ActivityExecutorDelegateInfo<QueueEventArgs>(eventListener, qService.CallingActivity)); 145return this.queueName; 161qService.EnqueueEvent(this.queueName, item); 169object message = qService.Peek(this.queueName); 171return qService.DequeueEvent(this.queueName); 179object message = qService.Peek(this.queueName); 191return this.qService.GetQueueState(this.queueName).Messages.Count; 202return this.qService.GetQueueState(this.queueName).Enabled; 209this.qService.GetQueueState(this.queueName).Enabled = value;