2 writes to Name
System.Xaml (2)
System\Xaml\Parser\XamlName.cs (2)
23Name = name; 28Name = name;
30 references to Name
System.Xaml (30)
System\Xaml\Context\XamlContext.cs (13)
102property = GetInstanceOrAttachableProperty(tagType, propName.Name, rootTagType); 111XamlTypeName ownerTypeName = new XamlTypeName(ns, propName.Owner.Name); 117property = GetInstanceOrAttachableProperty(ownerType, propName.Name, rootTagType); 121property = GetXamlAttachableProperty(ownerType, propName.Name); 133property = CreateUnknownMember(declaringType, propName.Name); 137property = CreateUnknownAttachableMember(declaringType, propName.Name); 175property = GetXamlProperty(tagType, propName.Name, rootTagType); 182property = GetXamlAttachableProperty(tagType, propName.Name); 190XamlDirective directive = SchemaContext.GetXamlDirective(propUsageNamespace, propName.Name); 197directive = new XamlDirective(propUsageNamespace, propName.Name); 209property = new XamlMember(propName.Name, tagType, false); 214property = new XamlDirective(propUsageNamespace, propName.Name); 251return new XamlTypeName(xamlNs, typeName.Name);
System\Xaml\InfosetObjects\XamlObjectWriter.cs (2)
1191throw ctx.WithLineInfo(new XamlObjectWriterException(SR.Format(SR.CannotResolveTypeForFactoryMethod, ownerTypeName, propertyName.Name))); 1195inst = Runtime.CreateWithFactoryMethod(ownerType, propertyName.Name, ctx.CurrentCtorArgs);
System\Xaml\Parser\XamlAttribute.cs (5)
125? Name.Name 126: $"{Name.OwnerName}.{Name.Name}"; 131if (string.IsNullOrEmpty(Name.Prefix) && KS.Eq(Name.Name, KnownStrings.XmlNsPrefix)) 156unknownProperty = new XamlMember(propName.Name, attachedOwnerType, isAttachable: true); 160unknownProperty = new XamlMember(propName.Name, tagType, false);
System\Xaml\Parser\XamlPropertyName.cs (3)
80$"{Owner.ScopedName}.{Name}" : 81Name; 90Owner.Name :
System\Xaml\Parser\XamlQualifiedName.cs (2)
21Name : 22$"{Prefix}:{Name}";
System\Xaml\Parser\XamlScanner.cs (5)
298XamlMember dirProperty = schemaContext.GetXamlDirective(xamlNs, name.Name); 305bool sawXData = ReadObjectElement_Object(xamlNs, name.Name, node); 545return new XamlType(xmlns, name.Name, null, _parserContext.SchemaContext); 608if (KS.Eq(attr.Name.Name, XamlLanguage.TypeArguments.Name)) 611XamlMember directiveProperty = _parserContext.ResolveDirectiveProperty(attrNamespace, attr.Name.Name);