File: BackgroundingEventArgs.cs
Web Access
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls)
#nullable disable
using System;
 
namespace Microsoft.Maui.Controls
{
	public class BackgroundingEventArgs : EventArgs
	{
		public BackgroundingEventArgs(IPersistedState state)
		{
			State = state;
		}
 
		public IPersistedState State { get; set; }
	}
}