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