2 writes to _handlerBasedNavigationCompletionSource
Microsoft.Maui.Controls (2)
Shell\ShellSection.cs (2)
1234 _handlerBasedNavigationCompletionSource = new TaskCompletionSource<object>(); 1242 _handlerBasedNavigationCompletionSource = null;
9 references to _handlerBasedNavigationCompletionSource
Microsoft.Maui.Controls (9)
Shell\ShellSection.cs (9)
791 if (_handlerBasedNavigationCompletionSource?.Task != null) 792 await _handlerBasedNavigationCompletionSource.Task; 829 if (_handlerBasedNavigationCompletionSource?.Task != null) 830 await _handlerBasedNavigationCompletionSource.Task; 869 _handlerBasedNavigationCompletionSource?.Task ?? 1227 internal Task? PendingNavigationTask => _handlerBasedNavigationCompletionSource?.Task; 1231 if (_handlerBasedNavigationCompletionSource != null) 1240 _ = _handlerBasedNavigationCompletionSource ?? throw new InvalidOperationException("Mismatched Navigation finished"); 1241 var source = _handlerBasedNavigationCompletionSource;