2 writes to Name
System.Xaml (2)
System\Xaml\Parser\XamlName.cs (2)
23
Name
= name;
28
Name
= name;
30 references to Name
System.Xaml (30)
System\Xaml\Context\XamlContext.cs (13)
101
property = GetInstanceOrAttachableProperty(tagType, propName.
Name
, rootTagType);
110
XamlTypeName ownerTypeName = new XamlTypeName(ns, propName.Owner.
Name
);
116
property = GetInstanceOrAttachableProperty(ownerType, propName.
Name
, rootTagType);
120
property = GetXamlAttachableProperty(ownerType, propName.
Name
);
131
property = CreateUnknownMember(declaringType, propName.
Name
);
135
property = CreateUnknownAttachableMember(declaringType, propName.
Name
);
171
property = GetXamlProperty(tagType, propName.
Name
, rootTagType);
178
property = GetXamlAttachableProperty(tagType, propName.
Name
);
185
XamlDirective directive = SchemaContext.GetXamlDirective(propUsageNamespace, propName.
Name
);
192
directive = new XamlDirective(propUsageNamespace, propName.
Name
);
202
property = new XamlMember(propName.
Name
, tagType, false);
207
property = new XamlDirective(propUsageNamespace, propName.
Name
);
243
return new XamlTypeName(xamlNs, typeName.
Name
);
System\Xaml\InfosetObjects\XamlObjectWriter.cs (2)
1162
throw ctx.WithLineInfo(new XamlObjectWriterException(SR.Format(SR.CannotResolveTypeForFactoryMethod, ownerTypeName, propertyName.
Name
)));
1166
inst = Runtime.CreateWithFactoryMethod(ownerType, propertyName.
Name
, ctx.CurrentCtorArgs);
System\Xaml\Parser\XamlAttribute.cs (5)
128
? Name.
Name
129
: $"{Name.OwnerName}.{Name.
Name
}";
133
if (String.IsNullOrEmpty(Name.Prefix) && KS.Eq(Name.
Name
, KnownStrings.XmlNsPrefix))
157
unknownProperty = new XamlMember(propName.
Name
, attachedOwnerType, true /*isAttachable*/);
161
unknownProperty = new XamlMember(propName.
Name
, tagType, false);
System\Xaml\Parser\XamlPropertyName.cs (3)
82
$"{Owner.ScopedName}.{
Name
}" :
83
Name
;
92
Owner.
Name
:
System\Xaml\Parser\XamlQualifiedName.cs (2)
23
Name
:
24
$"{Prefix}:{
Name
}";
System\Xaml\Parser\XamlScanner.cs (5)
298
XamlMember dirProperty = schemaContext.GetXamlDirective(xamlNs, name.
Name
);
305
bool sawXData = ReadObjectElement_Object(xamlNs, name.
Name
, node);
538
return new XamlType(xmlns, name.
Name
, null, _parserContext.SchemaContext);
599
if (KS.Eq(attr.Name.
Name
, XamlLanguage.TypeArguments.Name))
602
XamlMember directiveProperty = _parserContext.ResolveDirectiveProperty(attrNamespace, attr.Name.
Name
);