3 writes to Name
PresentationFramework (3)
System\Windows\Markup\BamlMapTable.cs (2)
629record.Name = GetAttributeNameFromKnownId(knownId); 1341Name = fieldName,
System\Windows\Markup\BamlRecords.cs (1)
4581Name = bamlBinaryReader.ReadString();
30 references to Name
PresentationFramework (30)
System\Windows\Markup\BamlMapTable.cs (11)
374object key = GetAttributeInfoKey(info.OwnerType.FullName, info.Name); 639record.PropInfo = ownerType.GetProperty(record.Name, BindingFlags.Instance | BindingFlags.Public); 676return record.Name; 692return (record.OwnerTypeId == ownerTypeId) && (string.Equals(record.Name, name, StringComparison.Ordinal)); 729name = record.Name; 822propName = $"{attributeInfo.OwnerType.FullName}.{attributeInfo.Name}"; 829propName = attributeInfo.Name; 914bamlAttributeInfoRecord.Name, 932bamlAttributeInfoRecord.Event = XamlTypeMapper.RoutedEventFromName(bamlAttributeInfoRecord.Name,ownerType); 1635Debug.Assert(AttributeIdMap.Count == record.AttributeId || record.Name == AttributeIdMap[record.AttributeId].Name);
System\Windows\Markup\BamlReader.cs (7)
990throw new InvalidOperationException(SR.Format(SR.BamlReaderNoOwnerType, attrInfo.Name, AssemblyName)); 996attrInfo.PropInfo = attrInfo.OwnerType.GetProperty(attrInfo.Name, 1016if (infos[i].Name == attrInfo.Name) 1035string propertyName = attrInfo.Name; 2363nodeInfo.LocalName = attrInfo.Name; 2417propName = attrInfo.Name; 2492propName = attrInfo.Name;
System\Windows\Markup\BamlRecordReader.cs (8)
2361Member = attribInfo.Name 2906ThrowExceptionWithLine(SR.Format(SR.ParserCannotSetValue, element.GetType().FullName, propertyDefinition.AttributeInfo.Name, attribValue), e); 3688o = OptionallyMakeNullable(propertyType, o, attribInfo.Name); 3727ThrowExceptionWithLine(SR.Format(SR.ParserCannotSetValue, currentTarget.GetType().FullName, attribInfo.Name, o), e); 5098attribInfo.EventInfo = ParserContext.XamlTypeMapper.GetClrEventInfo(currentParentType, attribInfo.Name); 5103attribInfo.EventInfo = currentParentType.GetEvent(attribInfo.Name, 5141return $"{attribInfo.OwnerType.Name}.{attribInfo.Name}"; 5858return _attributeInfo.Name;
System\Windows\Markup\BamlRecords.cs (1)
4592bamlBinaryWriter.Write(Name);
System\Windows\Markup\XamlTypeMapper.cs (3)
797object key = MapTable.GetAttributeInfoKey(ownerType.FullName, infoRecord.Name); 820string propName = attribInfo.Name; 858string propName = (isSetter ? "Set" : "Get") + attributeInfo.Name;