2 writes to PendingInputItems
PresentationFramework (2)
src\Framework\System\windows\Documents\TextEditorTyping.cs (2)
1624
threadLocalStore.
PendingInputItems
= new ArrayList(1);
1682
threadLocalStore.
PendingInputItems
= null;
7 references to PendingInputItems
PresentationFramework (7)
src\Framework\System\windows\Documents\TextEditorTyping.cs (7)
170
if (threadLocalStore.
PendingInputItems
!= null)
174
for (int i = 0; i < threadLocalStore.
PendingInputItems
.Count; i++)
176
((InputItem)threadLocalStore.
PendingInputItems
[i]).Do();
185
threadLocalStore.
PendingInputItems
.Clear();
1622
if (threadLocalStore.
PendingInputItems
== null)
1628
threadLocalStore.
PendingInputItems
.Add(item);
1674
Invariant.Assert(threadLocalStore.
PendingInputItems
!= null);