4 writes to Instance
System.Xaml (4)
System\Xaml\Context\ObjectWriterContext.cs (1)
552
set { _stack.CurrentFrame.
Instance
= value; }
System\Xaml\Context\ObjectWriterFrame.cs (2)
42
Instance
= source.Instance;
54
Instance
= null;
System\Xaml\Context\SavedContext.cs (1)
29
stack.CurrentFrame.
Instance
= null;
18 references to Instance
System.Xaml (18)
System\Xaml\Context\ObjectWriterContext.cs (14)
294
if (frame.
Instance
is not null && frame.XamlType is null)
338
object inst = frame.
Instance
;
372
if (prop == frame.Member && lowerFrame.
Instance
is not null
378
if (!(lowerFrame.
Instance
is XAML3.MarkupExtension))
381
value = lowerFrame.
Instance
;
447
object inst = frame.
Instance
;
551
get { return _stack.CurrentFrame.
Instance
; }
557
get { return _stack.PreviousFrame.
Instance
; }
562
get { return (_stack.PreviousPreviousFrame is not null) ? _stack.PreviousPreviousFrame.
Instance
: null; }
774
_rootInstance = rootFrame.
Instance
;
804
frame.NameScopeDictionary = frame.
Instance
as XAML3.INameScopeDictionary ?? new NameScopeDictionary(frame.
Instance
as XAML3.INameScope);
867
if (instance == frame.
Instance
)
882
object inst = rootFrame.
Instance
;
System\Xaml\Context\ObjectWriterFrame.cs (4)
42
Instance = source.
Instance
;
74
string inst = (
Instance
is null) ? "-" : ((
Instance
is string) ?
Instance
.ToString() : "*");