2 writes to _handlerBasedNavigationCompletionSource
Microsoft.Maui.Controls (2)
Shell\ShellSection.cs (2)
1245
_handlerBasedNavigationCompletionSource
= new TaskCompletionSource<object>();
1253
_handlerBasedNavigationCompletionSource
= null;
9 references to _handlerBasedNavigationCompletionSource
Microsoft.Maui.Controls (9)
Shell\ShellSection.cs (9)
802
if (
_handlerBasedNavigationCompletionSource
?.Task != null)
803
await
_handlerBasedNavigationCompletionSource
.Task;
840
if (
_handlerBasedNavigationCompletionSource
?.Task != null)
841
await
_handlerBasedNavigationCompletionSource
.Task;
880
_handlerBasedNavigationCompletionSource
?.Task ??
1238
internal Task? PendingNavigationTask =>
_handlerBasedNavigationCompletionSource
?.Task;
1242
if (
_handlerBasedNavigationCompletionSource
!= null)
1251
_ =
_handlerBasedNavigationCompletionSource
?? throw new InvalidOperationException("Mismatched Navigation finished");
1252
var source =
_handlerBasedNavigationCompletionSource
;