4 writes to Instance
System.Xaml (4)
System\Xaml\Context\ObjectWriterContext.cs (1)
554set { _stack.CurrentFrame.Instance = value; }
System\Xaml\Context\ObjectWriterFrame.cs (2)
45Instance = source.Instance; 57Instance = null;
System\Xaml\Context\SavedContext.cs (1)
29stack.CurrentFrame.Instance = null;
18 references to Instance
System.Xaml (18)
System\Xaml\Context\ObjectWriterContext.cs (14)
295if (frame.Instance != null && frame.XamlType == null) 338object inst = frame.Instance; 372if (prop == frame.Member && lowerFrame.Instance != null 378if (!(lowerFrame.Instance is XAML3.MarkupExtension)) 381value = lowerFrame.Instance; 449object inst = frame.Instance; 553get { return _stack.CurrentFrame.Instance; } 559get { return _stack.PreviousFrame.Instance; } 564get { return (_stack.PreviousPreviousFrame != null) ? _stack.PreviousPreviousFrame.Instance : null; } 776_rootInstance = rootFrame.Instance; 804frame.NameScopeDictionary = frame.Instance as XAML3.INameScopeDictionary ?? new NameScopeDictionary(frame.Instance as XAML3.INameScope); 867if (instance == frame.Instance) 880object inst = rootFrame.Instance;
System\Xaml\Context\ObjectWriterFrame.cs (4)
45Instance = source.Instance; 77string inst = (Instance == null) ? "-" : ((Instance is string) ? Instance.ToString() : "*");