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)
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); 131property = CreateUnknownMember(declaringType, propName.Name); 135property = CreateUnknownAttachableMember(declaringType, propName.Name); 171property = GetXamlProperty(tagType, propName.Name, rootTagType); 178property = GetXamlAttachableProperty(tagType, propName.Name); 185XamlDirective directive = SchemaContext.GetXamlDirective(propUsageNamespace, propName.Name); 192directive = new XamlDirective(propUsageNamespace, propName.Name); 202property = new XamlMember(propName.Name, tagType, false); 207property = new XamlDirective(propUsageNamespace, propName.Name); 243return new XamlTypeName(xamlNs, typeName.Name);
System\Xaml\InfosetObjects\XamlObjectWriter.cs (2)
1167throw ctx.WithLineInfo(new XamlObjectWriterException(SR.Format(SR.CannotResolveTypeForFactoryMethod, ownerTypeName, propertyName.Name))); 1171inst = Runtime.CreateWithFactoryMethod(ownerType, propertyName.Name, ctx.CurrentCtorArgs);
System\Xaml\Parser\XamlAttribute.cs (5)
128? Name.Name 129: Name.OwnerName + "." + Name.Name; 133if (String.IsNullOrEmpty(Name.Prefix) && KS.Eq(Name.Name, KnownStrings.XmlNsPrefix)) 157unknownProperty = new XamlMember(propName.Name, attachedOwnerType, true /*isAttachable*/); 161unknownProperty = new XamlMember(propName.Name, tagType, false);
System\Xaml\Parser\XamlPropertyName.cs (3)
82Owner.ScopedName + "." + Name : 83Name; 92Owner.Name :
System\Xaml\Parser\XamlQualifiedName.cs (2)
23Name : 24Prefix + ":" + Name;
System\Xaml\Parser\XamlScanner.cs (5)
298XamlMember dirProperty = schemaContext.GetXamlDirective(xamlNs, name.Name); 305bool sawXData = ReadObjectElement_Object(xamlNs, name.Name, node); 538return new XamlType(xmlns, name.Name, null, _parserContext.SchemaContext); 599if (KS.Eq(attr.Name.Name, XamlLanguage.TypeArguments.Name)) 602XamlMember directiveProperty = _parserContext.ResolveDirectiveProperty(attrNamespace, attr.Name.Name);