[NUI]Add xaml support for nui and nui xaml test sample (#230)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / Xaml / HydrationContext.cs
1 using System;
2 using System.Collections.Generic;
3
4 namespace Tizen.NUI.Xaml
5 {
6         class HydrationContext
7         {
8                 public HydrationContext()
9                 {
10                         Values = new Dictionary<INode, object>();
11                         Types = new Dictionary<IElementNode, Type>();
12                 }
13
14                 public Dictionary<INode, object> Values { get; }
15                 public Dictionary<IElementNode, Type> Types { get; }
16                 public HydrationContext ParentContext { get; set; }
17                 public Action<Exception> ExceptionHandler { get; set; }
18                 public object RootElement { get; set; }
19         }
20 }