26 references to ParentProperty
System.Xaml (26)
System\Xaml\Context\ContextServices.cs (3)
19
Debug.Assert(xamlContext.
ParentProperty
!= null);
21
IProvideValueTarget ipvt = xamlContext.
ParentProperty
as IProvideValueTarget;
27
XamlMember parentProperty = xamlContext.
ParentProperty
;
System\Xaml\Context\ServiceProviderContext.cs (3)
303
if (_xamlContext.
ParentProperty
== XamlLanguage.Initialization)
334
token.Target.Property = _xamlContext.
ParentProperty
;
344
token.Target.Property = _xamlContext.
ParentProperty
;
System\Xaml\InfosetObjects\XamlObjectWriter.cs (20)
237
if (ctx.ParentInstance == null && ctx.
ParentProperty
!= XamlLanguage.Arguments)
265
? _context.
ParentProperty
510
_context.
ParentProperty
,
689
property = _context.
ParentProperty
;
1301
XamlMember property = ctx.
ParentProperty
;
1394
Debug.Assert(ctx.
ParentProperty
== XamlLanguage.Key);
1463
if (ctx.LiveDepth > 2 && ctx.
ParentProperty
== XamlLanguage.Key &&
1641
if (!handled && ctx.
ParentProperty
!= null)
1653
XamlMember parentProperty = ctx.
ParentProperty
;
1698
if (ctx.
ParentProperty
!= null)
1707
else if (ctx.
ParentProperty
== XamlLanguage.Items)
1713
ctx.CurrentType = ctx.
ParentProperty
.Type;
1739
bool inDictionary = ((ctx.
ParentProperty
== XamlLanguage.Items) && ctx.ParentType.IsDictionary);
1948
XamlMember parentProperty = ctx.
ParentProperty
;
1985
ctx.
ParentProperty
,
2198
XamlMember property = ctx.
ParentProperty
;
2478
value = Logic_CreateFromValue(owc, owc.
ParentProperty
.TypeConverter, owc.CurrentInstance,
2479
owc.
ParentProperty
, owc.
ParentProperty
.Name, token);
2494
if(token.Target.Property != token.TargetContext.
ParentProperty
)