7 writes to _documentPageAsync
PresentationFramework (7)
src\Framework\System\Windows\Controls\Primitives\DocumentPageView.cs (7)
279
_documentPageAsync
= _documentPaginator.GetPage(PageNumber);
282
_documentPageAsync
= DocumentPage.Missing;
303
_documentPageAsync
= DocumentPage.Missing;
317
_documentPageAsync
= null;
736
_documentPageAsync
= e.DocumentPage;
739
_documentPageAsync
= DocumentPage.Missing;
879
_documentPageAsync
= null;
19 references to _documentPageAsync
PresentationFramework (19)
src\Framework\System\Windows\Controls\Primitives\DocumentPageView.cs (19)
91
Invariant.Assert(
_documentPageAsync
== null);
269
if (_documentPage == null &&
_documentPageAsync
== null)
280
if (
_documentPageAsync
== null)
294
if (
_documentPageAsync
!= null)
301
if (
_documentPageAsync
== null)
311
_documentPage =
_documentPageAsync
;
315
_documentPageAsync
.PageDestroyed -= new EventHandler(HandleAsyncPageDestroyed);
500
Invariant.Assert(
_documentPageAsync
== null);
732
if (
_documentPageAsync
!= null &&
_documentPageAsync
!= DocumentPage.Missing)
734
_documentPageAsync
.PageDestroyed -= new EventHandler(HandleAsyncPageDestroyed);
737
if (
_documentPageAsync
== null)
741
if (
_documentPageAsync
!= DocumentPage.Missing)
743
_documentPageAsync
.PageDestroyed += new EventHandler(HandleAsyncPageDestroyed);
869
if (
_documentPageAsync
!= null)
871
if (
_documentPageAsync
!= DocumentPage.Missing)
873
_documentPageAsync
.PageDestroyed -= new EventHandler(HandleAsyncPageDestroyed);
875
if (
_documentPageAsync
is IDisposable)
877
((IDisposable)
_documentPageAsync
).Dispose();