7 writes to _documentPageAsync
PresentationFramework (7)
System\Windows\Controls\Primitives\DocumentPageView.cs (7)
273
_documentPageAsync
= _documentPaginator.GetPage(PageNumber);
276
_documentPageAsync
= DocumentPage.Missing;
297
_documentPageAsync
= DocumentPage.Missing;
311
_documentPageAsync
= null;
726
_documentPageAsync
= e.DocumentPage;
729
_documentPageAsync
= DocumentPage.Missing;
869
_documentPageAsync
= null;
19 references to _documentPageAsync
PresentationFramework (19)
System\Windows\Controls\Primitives\DocumentPageView.cs (19)
85
Invariant.Assert(
_documentPageAsync
== null);
263
if (_documentPage == null &&
_documentPageAsync
== null)
274
if (
_documentPageAsync
== null)
288
if (
_documentPageAsync
!= null)
295
if (
_documentPageAsync
== null)
305
_documentPage =
_documentPageAsync
;
309
_documentPageAsync
.PageDestroyed -= new EventHandler(HandleAsyncPageDestroyed);
493
Invariant.Assert(
_documentPageAsync
== null);
722
if (
_documentPageAsync
!= null &&
_documentPageAsync
!= DocumentPage.Missing)
724
_documentPageAsync
.PageDestroyed -= new EventHandler(HandleAsyncPageDestroyed);
727
if (
_documentPageAsync
== null)
731
if (
_documentPageAsync
!= DocumentPage.Missing)
733
_documentPageAsync
.PageDestroyed += new EventHandler(HandleAsyncPageDestroyed);
859
if (
_documentPageAsync
!= null)
861
if (
_documentPageAsync
!= DocumentPage.Missing)
863
_documentPageAsync
.PageDestroyed -= new EventHandler(HandleAsyncPageDestroyed);
865
if (
_documentPageAsync
is IDisposable)
867
((IDisposable)
_documentPageAsync
).Dispose();