4 writes to XamlType
System.Xaml (4)
System\Xaml\Context\ObjectWriterContext.cs (1)
514
set { _stack.CurrentFrame.
XamlType
= value; }
System\Xaml\Context\XamlCommonFrame.cs (2)
32
XamlType
= source.XamlType;
43
XamlType
= null;
System\Xaml\Context\XamlParserContext.cs (1)
194
set { _stack.CurrentFrame.
XamlType
= value; }
23 references to XamlType
System.Xaml (23)
System\Xaml\Context\ObjectWriterContext.cs (18)
287
if (frame.Instance != null && frame.
XamlType
== null)
296
return frame.
XamlType
;
336
if (frame.
XamlType
!= null && frame.
XamlType
.CanAssignTo(type))
354
if (frame.
XamlType
!= null && frame.
XamlType
.CanAssignTo(prop.DeclaringType))
365
&& lowerFrame.
XamlType
!= null && !lowerFrame.
XamlType
.IsUsableDuringInitialization)
408
if (ceilingTypes.Contains(frame.
XamlType
))
443
if (frame.
XamlType
!= null && frame.
XamlType
.CanAssignTo(type))
513
get { return _stack.CurrentFrame.
XamlType
; }
519
get { return _stack.PreviousFrame.
XamlType
; }
524
get { return (_stack.PreviousPreviousFrame != null) ? _stack.PreviousPreviousFrame.
XamlType
: null; }
794
if (frame.
XamlType
!= null && frame.
XamlType
.IsNameScope)
869
if (inst == null && rootFrame.
XamlType
.IsNameScope)
891
XamlType xamlType = rootFrame.
XamlType
;
System\Xaml\Context\ObjectWriterFrame.cs (2)
75
string type = (
XamlType
== null) ? string.Empty :
XamlType
.Name;
System\Xaml\Context\XamlCommonFrame.cs (1)
32
XamlType = source.
XamlType
;
System\Xaml\Context\XamlParserContext.cs (2)
193
get { return _stack.CurrentFrame.
XamlType
; }
304
get { return _stack.CurrentFrame.
XamlType
!= null && _stack.Depth == 1; }