File: Hosting\IMauiServiceCollection.cs
Web Access
Project: src\src\Core\src\Core.csproj (Microsoft.Maui)
#nullable enable
using System;
using Microsoft.Extensions.DependencyInjection;
 
namespace Microsoft.Maui.Hosting
{
	public interface IMauiServiceCollection : IServiceCollection
	{
		bool TryGetService(Type serviceType, out ServiceDescriptor? descriptor);
	}
}