2 writes to PendingInputItems
PresentationFramework (2)
System\windows\Documents\TextEditorTyping.cs (2)
1598
threadLocalStore.
PendingInputItems
= new ArrayList(1);
1643
threadLocalStore.
PendingInputItems
= null;
7 references to PendingInputItems
PresentationFramework (7)
System\windows\Documents\TextEditorTyping.cs (7)
157
if (threadLocalStore.
PendingInputItems
!= null)
161
for (int i = 0; i < threadLocalStore.
PendingInputItems
.Count; i++)
163
((InputItem)threadLocalStore.
PendingInputItems
[i]).Do();
172
threadLocalStore.
PendingInputItems
.Clear();
1596
if (threadLocalStore.
PendingInputItems
== null)
1602
threadLocalStore.
PendingInputItems
.Add(item);
1635
Invariant.Assert(threadLocalStore.
PendingInputItems
!= null);