using System; using System.Collections.Generic; namespace Xamarin.Forms.Xaml { internal class HydratationContext { public HydratationContext() { Values = new Dictionary(); Types = new Dictionary(); } public Dictionary Values { get; private set; } public Dictionary Types { get; private set; } public HydratationContext ParentContext { get; set; } public BindableObject RootElement { get; set; } } }