2 writes to PendingInputItems
PresentationFramework (2)
System\windows\Documents\TextEditorTyping.cs (2)
1607
threadLocalStore.
PendingInputItems
= new ArrayList(1);
1652
threadLocalStore.
PendingInputItems
= null;
7 references to PendingInputItems
PresentationFramework (7)
System\windows\Documents\TextEditorTyping.cs (7)
166
if (threadLocalStore.
PendingInputItems
!= null)
170
for (int i = 0; i < threadLocalStore.
PendingInputItems
.Count; i++)
172
((InputItem)threadLocalStore.
PendingInputItems
[i]).Do();
181
threadLocalStore.
PendingInputItems
.Clear();
1605
if (threadLocalStore.
PendingInputItems
== null)
1611
threadLocalStore.
PendingInputItems
.Add(item);
1644
Invariant.Assert(threadLocalStore.
PendingInputItems
!= null);