4 writes to XamlType
System.Xaml (4)
System\Xaml\Context\ObjectWriterContext.cs (1)
511
set { _stack.CurrentFrame.
XamlType
= value; }
System\Xaml\Context\XamlCommonFrame.cs (2)
31
XamlType
= source.XamlType;
42
XamlType
= null;
System\Xaml\Context\XamlParserContext.cs (1)
192
set { _stack.CurrentFrame.
XamlType
= value; }
23 references to XamlType
System.Xaml (23)
System\Xaml\Context\ObjectWriterContext.cs (18)
284
if (frame.Instance is not null && frame.
XamlType
is null)
293
return frame.
XamlType
;
333
if (frame.
XamlType
is not null && frame.
XamlType
.CanAssignTo(type))
351
if (frame.
XamlType
is not null && frame.
XamlType
.CanAssignTo(prop.DeclaringType))
362
&& lowerFrame.
XamlType
is not null && !lowerFrame.
XamlType
.IsUsableDuringInitialization)
405
if (ceilingTypes.Contains(frame.
XamlType
))
440
if (frame.
XamlType
is not null && frame.
XamlType
.CanAssignTo(type))
510
get { return _stack.CurrentFrame.
XamlType
; }
516
get { return _stack.PreviousFrame.
XamlType
; }
521
get { return (_stack.PreviousPreviousFrame is not null) ? _stack.PreviousPreviousFrame.
XamlType
: null; }
791
if (frame.
XamlType
is not null && frame.
XamlType
.IsNameScope)
866
if (inst is null && rootFrame.
XamlType
.IsNameScope)
888
XamlType xamlType = rootFrame.
XamlType
;
System\Xaml\Context\ObjectWriterFrame.cs (2)
71
string type = (
XamlType
is null) ? string.Empty :
XamlType
.Name;
System\Xaml\Context\XamlCommonFrame.cs (1)
31
XamlType = source.
XamlType
;
System\Xaml\Context\XamlParserContext.cs (2)
191
get { return _stack.CurrentFrame.
XamlType
; }
302
get { return _stack.CurrentFrame.
XamlType
is not null && _stack.Depth == 1; }