using System; using System.Collections.Generic; using System.Reflection; namespace System.Maui.Xaml { class HydrationContext { public HydrationContext() { Values = new Dictionary(); Types = new Dictionary(); } public Dictionary Values { get; } public Dictionary Types { get; } public HydrationContext ParentContext { get; set; } public Action ExceptionHandler { get; set; } public object RootElement { get; set; } public Assembly RootAssembly { get; internal set; } } }