2 writes to _deferredTaskCompletionSource
Microsoft.Maui.Controls (2)
Shell\ShellNavigatingEventArgs.cs (2)
67
_deferredTaskCompletionSource
= new TaskCompletionSource<bool>();
95
_deferredTaskCompletionSource
= null;
4 references to _deferredTaskCompletionSource
Microsoft.Maui.Controls (4)
Shell\ShellNavigatingEventArgs.cs (4)
84
_deferredTaskCompletionSource
.SetResult(!Cancelled);
88
_deferredTaskCompletionSource
.SetCanceled();
92
_deferredTaskCompletionSource
.SetException(exc);
99
internal Task<bool> DeferredTask =>
_deferredTaskCompletionSource
?.Task;