File: IMauiContext.cs
Web Access
Project: src\src\Core\src\Core.csproj (Microsoft.Maui)
using System;
 
namespace Microsoft.Maui
{
	public interface IMauiContext
	{
		IServiceProvider Services { get; }
 
		IMauiHandlersFactory Handlers { get; }
 
#if __ANDROID__
		Android.Content.Context? Context { get; }
#endif
	}
}