3 writes to Name
PresentationFramework (3)
System\Windows\Markup\BamlMapTable.cs (2)
633record.Name = GetAttributeNameFromKnownId(knownId); 1355Name = fieldName,
System\Windows\Markup\BamlRecords.cs (1)
4582Name = bamlBinaryReader.ReadString();
30 references to Name
PresentationFramework (30)
System\Windows\Markup\BamlMapTable.cs (11)
371object 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); 1647record.Name == 1648((BamlAttributeInfoRecord)AttributeIdMap[record.AttributeId]).Name);
System\Windows\Markup\BamlReader.cs (7)
991throw new InvalidOperationException(SR.Format(SR.BamlReaderNoOwnerType, attrInfo.Name, AssemblyName)); 997attrInfo.PropInfo = attrInfo.OwnerType.GetProperty(attrInfo.Name, 1017if (infos[i].Name == attrInfo.Name) 1036string propertyName = attrInfo.Name; 2367nodeInfo.LocalName = attrInfo.Name; 2421propName = attrInfo.Name; 2496propName = attrInfo.Name;
System\Windows\Markup\BamlRecordReader.cs (8)
2365Member = attribInfo.Name 2910ThrowExceptionWithLine(SR.Format(SR.ParserCannotSetValue, element.GetType().FullName, propertyDefinition.AttributeInfo.Name, attribValue), e); 3695o = OptionallyMakeNullable(propertyType, o, attribInfo.Name); 3734ThrowExceptionWithLine(SR.Format(SR.ParserCannotSetValue, currentTarget.GetType().FullName, attribInfo.Name, o), e); 5108attribInfo.EventInfo = ParserContext.XamlTypeMapper.GetClrEventInfo(currentParentType, attribInfo.Name); 5113attribInfo.EventInfo = currentParentType.GetEvent(attribInfo.Name, 5151return $"{attribInfo.OwnerType.Name}.{attribInfo.Name}"; 5871return _attributeInfo.Name;
System\Windows\Markup\BamlRecords.cs (1)
4593bamlBinaryWriter.Write(Name);
System\Windows\Markup\XamlTypeMapper.cs (3)
801object key = MapTable.GetAttributeInfoKey(ownerType.FullName, infoRecord.Name); 824string propName = attribInfo.Name; 862string propName = (isSetter ? "Set" : "Get") + attributeInfo.Name;