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; 2364nodeInfo.LocalName = attrInfo.Name; 2418propName = attrInfo.Name; 2493propName = attrInfo.Name;
System\Windows\Markup\BamlRecordReader.cs (8)
2362Member = attribInfo.Name 2907ThrowExceptionWithLine(SR.Format(SR.ParserCannotSetValue, element.GetType().FullName, propertyDefinition.AttributeInfo.Name, attribValue), e); 3689o = OptionallyMakeNullable(propertyType, o, attribInfo.Name); 3728ThrowExceptionWithLine(SR.Format(SR.ParserCannotSetValue, currentTarget.GetType().FullName, attribInfo.Name, o), e); 5099attribInfo.EventInfo = ParserContext.XamlTypeMapper.GetClrEventInfo(currentParentType, attribInfo.Name); 5104attribInfo.EventInfo = currentParentType.GetEvent(attribInfo.Name, 5142return $"{attribInfo.OwnerType.Name}.{attribInfo.Name}"; 5859return _attributeInfo.Name;
System\Windows\Markup\BamlRecords.cs (1)
4593bamlBinaryWriter.Write(Name);
System\Windows\Markup\XamlTypeMapper.cs (3)
798object key = MapTable.GetAttributeInfoKey(ownerType.FullName, infoRecord.Name); 821string propName = attribInfo.Name; 859string propName = (isSetter ? "Set" : "Get") + attributeInfo.Name;