File: LifecycleEvents\ILifecycleEventService.cs
Web Access
Project: src\src\Core\src\Core.csproj (Microsoft.Maui)
using System;
using System.Collections.Generic;
 
namespace Microsoft.Maui.LifecycleEvents
{
	public interface ILifecycleEventService
	{
		IEnumerable<TDelegate> GetEventDelegates<TDelegate>(string eventName)
			where TDelegate : Delegate;
 
		bool ContainsEvent(string eventName);
	}
}