3 writes to Name
PresentationFramework (3)
System\Windows\Markup\BamlMapTable.cs (2)
641record.Name = GetAttributeNameFromKnownId(knownId); 1356bamlAttributeInfoRecord.Name = fieldName;
System\Windows\Markup\BamlRecords.cs (1)
4594Name = bamlBinaryReader.ReadString();
30 references to Name
PresentationFramework (30)
System\Windows\Markup\BamlMapTable.cs (11)
383object key = GetAttributeInfoKey(info.OwnerType.FullName, info.Name); 651record.PropInfo = ownerType.GetProperty(record.Name, BindingFlags.Instance | BindingFlags.Public); 690return record.Name; 708return (record.OwnerTypeId == ownerTypeId) && (string.Equals(record.Name, name, StringComparison.Ordinal)); 745name = record.Name; 842propName = $"{attributeInfo.OwnerType.FullName}.{attributeInfo.Name}"; 849propName = attributeInfo.Name; 934bamlAttributeInfoRecord.Name, 952bamlAttributeInfoRecord.Event = XamlTypeMapper.RoutedEventFromName(bamlAttributeInfoRecord.Name,ownerType); 1647record.Name == 1648((BamlAttributeInfoRecord)AttributeIdMap[record.AttributeId]).Name);
System\Windows\Markup\BamlReader.cs (7)
997throw new InvalidOperationException(SR.Format(SR.BamlReaderNoOwnerType, attrInfo.Name, AssemblyName)); 1003attrInfo.PropInfo = attrInfo.OwnerType.GetProperty(attrInfo.Name, 1023if (infos[i].Name == attrInfo.Name) 1042string propertyName = attrInfo.Name; 2351nodeInfo.LocalName = attrInfo.Name; 2405propName = attrInfo.Name; 2480propName = attrInfo.Name;
System\Windows\Markup\BamlRecordReader.cs (8)
2379se.Member = attribInfo.Name; 2923ThrowExceptionWithLine(SR.Format(SR.ParserCannotSetValue, element.GetType().FullName, propertyDefinition.AttributeInfo.Name, attribValue), e); 3706o = OptionallyMakeNullable(propertyType, o, attribInfo.Name); 3745ThrowExceptionWithLine(SR.Format(SR.ParserCannotSetValue, currentTarget.GetType().FullName, attribInfo.Name, o), e); 5120attribInfo.EventInfo = ParserContext.XamlTypeMapper.GetClrEventInfo(currentParentType, attribInfo.Name); 5125attribInfo.EventInfo = currentParentType.GetEvent(attribInfo.Name, 5163return $"{attribInfo.OwnerType.Name}.{attribInfo.Name}"; 5883return _attributeInfo.Name;
System\Windows\Markup\BamlRecords.cs (1)
4605bamlBinaryWriter.Write(Name);
System\Windows\Markup\XamlTypeMapper.cs (3)
816object key = MapTable.GetAttributeInfoKey(ownerType.FullName, infoRecord.Name); 839string propName = attribInfo.Name; 877string propName = (isSetter ? "Set" : "Get") + attributeInfo.Name;