File: Handlers\HybridWebView\IHybridWebViewTaskManager.cs
Web Access
Project: src\src\Core\src\Core.csproj (Microsoft.Maui)
using System.Collections.Concurrent;
using System.Threading.Tasks;
 
namespace Microsoft.Maui.Handlers
{
	internal interface IHybridWebViewTaskManager
	{
		int GetNextInvokeTaskId();
		ConcurrentDictionary<string, TaskCompletionSource<string>> AsyncTaskCallbacks { get; }
	}
}