1 write to _journal
PresentationFramework (1)
src\Framework\MS\Internal\AppModel\JournalNavigationScope.cs (1)
446_journal = value;
22 references to _journal
PresentationFramework (22)
src\Framework\MS\Internal\AppModel\JournalNavigationScope.cs (22)
175return _journal != null && !InAppShutdown && _journal.CanGoForward; 183return _journal != null && !InAppShutdown && _journal.CanGoBack; 250return _journal == null ? null : _journal.RemoveBackEntry(); 302if (_journal == null) 305int realIndex = _journal.FindIndexForEntryWithId(entryId); 309JournalEntry entry = _journal[realIndex]; 311return _journal.IsNavigable(entry); 359if (_journal != null) 361_journal.AbortJournalNavigation(); 435if (_journal == null) 439return _journal; 444Debug.Assert(_journal == null && value != null, 447_journal.Filter = new JournalEntryFilter(this.IsEntryNavigable); 448_journal.BackForwardStateChange += new EventHandler(OnBackForwardStateChange); 451navigator.SetValue(BackStackPropertyKey, _journal.BackStack); 452navigator.SetValue(ForwardStackPropertyKey, _journal.ForwardStack); 479Debug.Assert(sender == _journal); 484bool newState = _journal.CanGoBack; 490newState = _journal.CanGoForward;