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