2 writes to _handlerBasedNavigationCompletionSource
Microsoft.Maui.Controls (2)
Shell\ShellSection.cs (2)
1247
_handlerBasedNavigationCompletionSource
= new TaskCompletionSource<object>();
1255
_handlerBasedNavigationCompletionSource
= null;
9 references to _handlerBasedNavigationCompletionSource
Microsoft.Maui.Controls (9)
Shell\ShellSection.cs (9)
804
if (
_handlerBasedNavigationCompletionSource
?.Task != null)
805
await
_handlerBasedNavigationCompletionSource
.Task;
842
if (
_handlerBasedNavigationCompletionSource
?.Task != null)
843
await
_handlerBasedNavigationCompletionSource
.Task;
882
_handlerBasedNavigationCompletionSource
?.Task ??
1240
internal Task? PendingNavigationTask =>
_handlerBasedNavigationCompletionSource
?.Task;
1244
if (
_handlerBasedNavigationCompletionSource
!= null)
1253
_ =
_handlerBasedNavigationCompletionSource
?? throw new InvalidOperationException("Mismatched Navigation finished");
1254
var source =
_handlerBasedNavigationCompletionSource
;