2 writes to _list
System.Web (2)
Util\SubscriptionQueue.cs (2)
31
_list
= new LinkedList<T>();
47
_list
= null;
8 references to _list
System.Web (8)
Util\SubscriptionQueue.cs (8)
25
get { return (
_list
== null ||
_list
.Count == 0); }
29
if (
_list
== null) {
34
LinkedListNode<T> node =
_list
.AddLast(value);
52
if (
_list
!= null &&
_list
.First != null) {
53
LinkedListNode<T> theNode =
_list
.First;
54
_list
.RemoveFirst(); // also marks the SubscriptionToken as inactive