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