7 writes to _documentPageAsync
PresentationFramework (7)
System\Windows\Controls\Primitives\DocumentPageView.cs (7)
277
_documentPageAsync
= _documentPaginator.GetPage(PageNumber);
280
_documentPageAsync
= DocumentPage.Missing;
301
_documentPageAsync
= DocumentPage.Missing;
315
_documentPageAsync
= null;
730
_documentPageAsync
= e.DocumentPage;
733
_documentPageAsync
= DocumentPage.Missing;
873
_documentPageAsync
= null;
19 references to _documentPageAsync
PresentationFramework (19)
System\Windows\Controls\Primitives\DocumentPageView.cs (19)
89
Invariant.Assert(
_documentPageAsync
== null);
267
if (_documentPage == null &&
_documentPageAsync
== null)
278
if (
_documentPageAsync
== null)
292
if (
_documentPageAsync
!= null)
299
if (
_documentPageAsync
== null)
309
_documentPage =
_documentPageAsync
;
313
_documentPageAsync
.PageDestroyed -= new EventHandler(HandleAsyncPageDestroyed);
497
Invariant.Assert(
_documentPageAsync
== null);
726
if (
_documentPageAsync
!= null &&
_documentPageAsync
!= DocumentPage.Missing)
728
_documentPageAsync
.PageDestroyed -= new EventHandler(HandleAsyncPageDestroyed);
731
if (
_documentPageAsync
== null)
735
if (
_documentPageAsync
!= DocumentPage.Missing)
737
_documentPageAsync
.PageDestroyed += new EventHandler(HandleAsyncPageDestroyed);
863
if (
_documentPageAsync
!= null)
865
if (
_documentPageAsync
!= DocumentPage.Missing)
867
_documentPageAsync
.PageDestroyed -= new EventHandler(HandleAsyncPageDestroyed);
869
if (
_documentPageAsync
is IDisposable)
871
((IDisposable)
_documentPageAsync
).Dispose();