4 writes to Instance
System.Xaml (4)
System\Xaml\Context\ObjectWriterContext.cs (1)
546
set { _stack.CurrentFrame.
Instance
= value; }
System\Xaml\Context\ObjectWriterFrame.cs (2)
45
Instance
= source.Instance;
57
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)
287
if (frame.
Instance
!= null && frame.XamlType == null)
330
object inst = frame.
Instance
;
364
if (prop == frame.Member && lowerFrame.
Instance
!= null
370
if (!(lowerFrame.
Instance
is XAML3.MarkupExtension))
373
value = lowerFrame.
Instance
;
441
object inst = frame.
Instance
;
545
get { return _stack.CurrentFrame.
Instance
; }
551
get { return _stack.PreviousFrame.
Instance
; }
556
get { return (_stack.PreviousPreviousFrame != null) ? _stack.PreviousPreviousFrame.
Instance
: null; }
768
_rootInstance = rootFrame.
Instance
;
796
frame.NameScopeDictionary = frame.
Instance
as XAML3.INameScopeDictionary ?? new NameScopeDictionary(frame.
Instance
as XAML3.INameScope);
855
if (instance == frame.
Instance
)
868
object inst = rootFrame.
Instance
;
System\Xaml\Context\ObjectWriterFrame.cs (4)
45
Instance = source.
Instance
;
77
string inst = (
Instance
== null) ? "-" : ((
Instance
is string) ?
Instance
.ToString() : "*");