3 writes to Name
PresentationFramework (3)
System\Windows\Markup\BamlMapTable.cs (2)
633record.Name = GetAttributeNameFromKnownId(knownId); 1348bamlAttributeInfoRecord.Name = fieldName;
System\Windows\Markup\BamlRecords.cs (1)
4588Name = bamlBinaryReader.ReadString();
30 references to Name
PresentationFramework (30)
System\Windows\Markup\BamlMapTable.cs (11)
375object key = GetAttributeInfoKey(info.OwnerType.FullName, info.Name); 643record.PropInfo = ownerType.GetProperty(record.Name, BindingFlags.Instance | BindingFlags.Public); 682return record.Name; 700return (record.OwnerTypeId == ownerTypeId) && (string.Equals(record.Name, name, StringComparison.Ordinal)); 737name = record.Name; 834propName = $"{attributeInfo.OwnerType.FullName}.{attributeInfo.Name}"; 841propName = attributeInfo.Name; 926bamlAttributeInfoRecord.Name, 944bamlAttributeInfoRecord.Event = XamlTypeMapper.RoutedEventFromName(bamlAttributeInfoRecord.Name,ownerType); 1639record.Name == 1640((BamlAttributeInfoRecord)AttributeIdMap[record.AttributeId]).Name);
System\Windows\Markup\BamlReader.cs (7)
987throw new InvalidOperationException(SR.Format(SR.BamlReaderNoOwnerType, attrInfo.Name, AssemblyName)); 993attrInfo.PropInfo = attrInfo.OwnerType.GetProperty(attrInfo.Name, 1013if (infos[i].Name == attrInfo.Name) 1032string propertyName = attrInfo.Name; 2341nodeInfo.LocalName = attrInfo.Name; 2395propName = attrInfo.Name; 2470propName = attrInfo.Name;
System\Windows\Markup\BamlRecordReader.cs (8)
2370se.Member = attribInfo.Name; 2914ThrowExceptionWithLine(SR.Format(SR.ParserCannotSetValue, element.GetType().FullName, propertyDefinition.AttributeInfo.Name, attribValue), e); 3697o = OptionallyMakeNullable(propertyType, o, attribInfo.Name); 3736ThrowExceptionWithLine(SR.Format(SR.ParserCannotSetValue, currentTarget.GetType().FullName, attribInfo.Name, o), e); 5111attribInfo.EventInfo = ParserContext.XamlTypeMapper.GetClrEventInfo(currentParentType, attribInfo.Name); 5116attribInfo.EventInfo = currentParentType.GetEvent(attribInfo.Name, 5154return $"{attribInfo.OwnerType.Name}.{attribInfo.Name}"; 5874return _attributeInfo.Name;
System\Windows\Markup\BamlRecords.cs (1)
4599bamlBinaryWriter.Write(Name);
System\Windows\Markup\XamlTypeMapper.cs (3)
806object key = MapTable.GetAttributeInfoKey(ownerType.FullName, infoRecord.Name); 829string propName = attribInfo.Name; 867string propName = (isSetter ? "Set" : "Get") + attributeInfo.Name;