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)
98property = GetInstanceOrAttachableProperty(tagType, propName.Name, rootTagType); 107XamlTypeName ownerTypeName = new XamlTypeName(ns, propName.Owner.Name); 113property = GetInstanceOrAttachableProperty(ownerType, propName.Name, rootTagType); 117property = GetXamlAttachableProperty(ownerType, propName.Name); 128property = CreateUnknownMember(declaringType, propName.Name); 132property = CreateUnknownAttachableMember(declaringType, propName.Name); 168property = GetXamlProperty(tagType, propName.Name, rootTagType); 175property = GetXamlAttachableProperty(tagType, propName.Name); 182XamlDirective directive = SchemaContext.GetXamlDirective(propUsageNamespace, propName.Name); 189directive = new XamlDirective(propUsageNamespace, propName.Name); 199property = new XamlMember(propName.Name, tagType, false); 204property = new XamlDirective(propUsageNamespace, propName.Name); 240return new XamlTypeName(xamlNs, typeName.Name);
System\Xaml\InfosetObjects\XamlObjectWriter.cs (2)
1160throw ctx.WithLineInfo(new XamlObjectWriterException(SR.Format(SR.CannotResolveTypeForFactoryMethod, ownerTypeName, propertyName.Name))); 1164inst = Runtime.CreateWithFactoryMethod(ownerType, propertyName.Name, ctx.CurrentCtorArgs);
System\Xaml\Parser\XamlAttribute.cs (5)
126? Name.Name 127: $"{Name.OwnerName}.{Name.Name}"; 131if (String.IsNullOrEmpty(Name.Prefix) && KS.Eq(Name.Name, KnownStrings.XmlNsPrefix)) 155unknownProperty = new XamlMember(propName.Name, attachedOwnerType, true /*isAttachable*/); 159unknownProperty = 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)
295XamlMember dirProperty = schemaContext.GetXamlDirective(xamlNs, name.Name); 302bool sawXData = ReadObjectElement_Object(xamlNs, name.Name, node); 535return new XamlType(xmlns, name.Name, null, _parserContext.SchemaContext); 596if (KS.Eq(attr.Name.Name, XamlLanguage.TypeArguments.Name)) 599XamlMember directiveProperty = _parserContext.ResolveDirectiveProperty(attrNamespace, attr.Name.Name);