2 writes to queue
System.Workflow.ComponentModel (2)
AuthoringOM\Serializer\GenericQueueSurrogate.cs (2)
56this.queue = queueType.GetConstructor(Type.EmptyTypes).Invoke(null); 77this.queue = null;
6 references to queue
System.Workflow.ComponentModel (6)
AuthoringOM\Serializer\GenericQueueSurrogate.cs (6)
53if (this.queue == null) 58return this.queue; 62if (this.queue != null) 64MethodInfo enqueueMethod = this.queue.GetType().GetMethod("Enqueue"); 71enqueueMethod.Invoke(this.queue, new object[] { this.items[n] }); 75enqueueMethod.Invoke(this.queue, new object[] { this.item });