2 writes to Name
System.Xaml (2)
System\Xaml\Parser\XamlName.cs (2)
22
Name
= name;
27
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
);
132
property = CreateUnknownMember(declaringType, propName.
Name
);
136
property = CreateUnknownAttachableMember(declaringType, propName.
Name
);
174
property = GetXamlProperty(tagType, propName.
Name
, rootTagType);
181
property = GetXamlAttachableProperty(tagType, propName.
Name
);
189
XamlDirective directive = SchemaContext.GetXamlDirective(propUsageNamespace, propName.
Name
);
196
directive = new XamlDirective(propUsageNamespace, propName.
Name
);
208
property = new XamlMember(propName.
Name
, tagType, false);
213
property = new XamlDirective(propUsageNamespace, propName.
Name
);
250
return new XamlTypeName(xamlNs, typeName.
Name
);
System\Xaml\InfosetObjects\XamlObjectWriter.cs (2)
1190
throw ctx.WithLineInfo(new XamlObjectWriterException(SR.Format(SR.CannotResolveTypeForFactoryMethod, ownerTypeName, propertyName.
Name
)));
1194
inst = Runtime.CreateWithFactoryMethod(ownerType, propertyName.
Name
, ctx.CurrentCtorArgs);
System\Xaml\Parser\XamlAttribute.cs (5)
124
? Name.
Name
125
: $"{Name.OwnerName}.{Name.
Name
}";
130
if (string.IsNullOrEmpty(Name.Prefix) && KS.Eq(Name.
Name
, KnownStrings.XmlNsPrefix))
155
unknownProperty = new XamlMember(propName.
Name
, attachedOwnerType, isAttachable: true);
159
unknownProperty = new XamlMember(propName.
Name
, tagType, false);
System\Xaml\Parser\XamlPropertyName.cs (3)
79
$"{Owner.ScopedName}.{
Name
}" :
80
Name
;
89
Owner.
Name
:
System\Xaml\Parser\XamlQualifiedName.cs (2)
20
Name
:
21
$"{Prefix}:{
Name
}";
System\Xaml\Parser\XamlScanner.cs (5)
297
XamlMember dirProperty = schemaContext.GetXamlDirective(xamlNs, name.
Name
);
304
bool sawXData = ReadObjectElement_Object(xamlNs, name.
Name
, node);
544
return new XamlType(xmlns, name.
Name
, null, _parserContext.SchemaContext);
607
if (KS.Eq(attr.Name.
Name
, XamlLanguage.TypeArguments.Name))
610
XamlMember directiveProperty = _parserContext.ResolveDirectiveProperty(attrNamespace, attr.Name.
Name
);