7 writes to _documentPageAsync
PresentationFramework (7)
System\Windows\Controls\Primitives\DocumentPageView.cs (7)
276
_documentPageAsync
= _documentPaginator.GetPage(PageNumber);
279
_documentPageAsync
= DocumentPage.Missing;
300
_documentPageAsync
= DocumentPage.Missing;
314
_documentPageAsync
= null;
729
_documentPageAsync
= e.DocumentPage;
732
_documentPageAsync
= DocumentPage.Missing;
866
_documentPageAsync
= null;
19 references to _documentPageAsync
PresentationFramework (19)
System\Windows\Controls\Primitives\DocumentPageView.cs (19)
84
Invariant.Assert(
_documentPageAsync
== null);
266
if (_documentPage == null &&
_documentPageAsync
== null)
277
if (
_documentPageAsync
== null)
291
if (
_documentPageAsync
!= null)
298
if (
_documentPageAsync
== null)
308
_documentPage =
_documentPageAsync
;
312
_documentPageAsync
.PageDestroyed -= new EventHandler(HandleAsyncPageDestroyed);
496
Invariant.Assert(
_documentPageAsync
== null);
725
if (
_documentPageAsync
!= null &&
_documentPageAsync
!= DocumentPage.Missing)
727
_documentPageAsync
.PageDestroyed -= new EventHandler(HandleAsyncPageDestroyed);
730
if (
_documentPageAsync
== null)
734
if (
_documentPageAsync
!= DocumentPage.Missing)
736
_documentPageAsync
.PageDestroyed += new EventHandler(HandleAsyncPageDestroyed);
856
if (
_documentPageAsync
!= null)
858
if (
_documentPageAsync
!= DocumentPage.Missing)
860
_documentPageAsync
.PageDestroyed -= new EventHandler(HandleAsyncPageDestroyed);
862
if (
_documentPageAsync
is IDisposable)
864
((IDisposable)
_documentPageAsync
).Dispose();