4 writes to Instance
System.Xaml (4)
System\Xaml\Context\ObjectWriterContext.cs (1)
550set { _stack.CurrentFrame.Instance = value; }
System\Xaml\Context\ObjectWriterFrame.cs (2)
41Instance = source.Instance; 53Instance = null;
System\Xaml\Context\SavedContext.cs (1)
28stack.CurrentFrame.Instance = null;
18 references to Instance
System.Xaml (18)
System\Xaml\Context\ObjectWriterContext.cs (14)
292if (frame.Instance is not null && frame.XamlType is null) 336object inst = frame.Instance; 370if (prop == frame.Member && lowerFrame.Instance is not null 376if (!(lowerFrame.Instance is XAML3.MarkupExtension)) 379value = lowerFrame.Instance; 445object inst = frame.Instance; 549get { return _stack.CurrentFrame.Instance; } 555get { return _stack.PreviousFrame.Instance; } 560get { return _stack.PreviousPreviousFrame?.Instance; } 772_rootInstance = rootFrame.Instance; 802frame.NameScopeDictionary = frame.Instance as XAML3.INameScopeDictionary ?? new NameScopeDictionary(frame.Instance as XAML3.INameScope); 865if (instance == frame.Instance) 880object inst = rootFrame.Instance;
System\Xaml\Context\ObjectWriterFrame.cs (4)
41Instance = source.Instance; 73string inst = (Instance is null) ? "-" : ((Instance is string) ? Instance.ToString() : "*");