File: HotReload\IHotReloadableView.cs
Web Access
Project: src\src\Core\src\Core.csproj (Microsoft.Maui)
#nullable enable
using System;
using Microsoft.Maui.Hosting;
 
namespace Microsoft.Maui.HotReload
{
	public interface IHotReloadableView : IReplaceableView, IView
	{
		IReloadHandler ReloadHandler { get; set; }
		void TransferState(IView newView);
		void Reload();
	}
}