2 writes to PendingInputItems
PresentationFramework (2)
System\windows\Documents\TextEditorTyping.cs (2)
1585
threadLocalStore.
PendingInputItems
= new ArrayList(1);
1630
threadLocalStore.
PendingInputItems
= null;
7 references to PendingInputItems
PresentationFramework (7)
System\windows\Documents\TextEditorTyping.cs (7)
153
if (threadLocalStore.
PendingInputItems
!= null)
157
for (int i = 0; i < threadLocalStore.
PendingInputItems
.Count; i++)
159
((InputItem)threadLocalStore.
PendingInputItems
[i]).Do();
168
threadLocalStore.
PendingInputItems
.Clear();
1583
if (threadLocalStore.
PendingInputItems
== null)
1589
threadLocalStore.
PendingInputItems
.Add(item);
1622
Invariant.Assert(threadLocalStore.
PendingInputItems
!= null);