1 write to _journalEntryList
PresentationFramework (1)
System\Windows\Navigation\Journal.cs (1)
64
_journalEntryList
= (List<JournalEntry>)info.GetValue("_journalEntryList", typeof(List<JournalEntry>));
19 references to _journalEntryList
PresentationFramework (19)
System\Windows\Navigation\Journal.cs (19)
53
info.AddValue("_journalEntryList",
_journalEntryList
);
94
return
_journalEntryList
[index];
104
return
_journalEntryList
.Count;
130
return
_journalEntryList
[_currentEntryIndex];
260
} while (IsNavigable(
_journalEntryList
[index]) == false);
283
JournalEntry oldEntry =
_journalEntryList
[_currentEntryIndex];
285
_journalEntryList
[_currentEntryIndex] = journalEntry;
291
_journalEntryList
.Add(journalEntry);
333
_journalEntryList
.RemoveRange(_currentEntryIndex,
_journalEntryList
.Count - _currentEntryIndex);
393
return
_journalEntryList
[fwdEntryIndex];
401
int index =
_journalEntryList
.IndexOf(entry);
422
int index =
_journalEntryList
.IndexOf(target);
461
JournalEntry je =
_journalEntryList
[i];
492
JournalEntry theEntry =
_journalEntryList
[index];
498
_journalEntryList
.RemoveAt(index);
520
JournalEntry entry =
_journalEntryList
[i];
548
JournalEntry je =
_journalEntryList
[index];
590
} while (!IsNavigable(
_journalEntryList
[index]));