3 writes to Name
PresentationFramework (3)
src\Framework\System\Windows\Markup\BamlMapTable.cs (2)
651record.Name = GetAttributeNameFromKnownId(knownId); 1366bamlAttributeInfoRecord.Name = fieldName;
src\Framework\System\Windows\Markup\BamlRecords.cs (1)
4838Name = bamlBinaryReader.ReadString();
30 references to Name
PresentationFramework (30)
src\Framework\System\Windows\Markup\BamlMapTable.cs (11)
393object key = GetAttributeInfoKey(info.OwnerType.FullName, info.Name); 661record.PropInfo = ownerType.GetProperty(record.Name, BindingFlags.Instance | BindingFlags.Public); 700return record.Name; 718return (record.OwnerTypeId == ownerTypeId) && (String.CompareOrdinal(record.Name, name) == 0); 755name = record.Name; 852propName = attributeInfo.OwnerType.FullName + "." + attributeInfo.Name; 859propName = attributeInfo.Name; 944bamlAttributeInfoRecord.Name, 962bamlAttributeInfoRecord.Event = XamlTypeMapper.RoutedEventFromName(bamlAttributeInfoRecord.Name,ownerType); 1657record.Name == 1658((BamlAttributeInfoRecord)AttributeIdMap[record.AttributeId]).Name);
src\Framework\System\Windows\Markup\BamlReader.cs (7)
1009throw new InvalidOperationException(SR.Get(SRID.BamlReaderNoOwnerType, attrInfo.Name, AssemblyName)); 1015attrInfo.PropInfo = attrInfo.OwnerType.GetProperty(attrInfo.Name, 1035if (infos[i].Name == attrInfo.Name) 1054string propertyName = attrInfo.Name; 2375nodeInfo.LocalName = attrInfo.Name; 2429propName = attrInfo.Name; 2504propName = attrInfo.Name;
src\Framework\System\Windows\Markup\BamlRecordReader.cs (8)
2410se.Member = attribInfo.Name; 2956ThrowExceptionWithLine(SR.Get(SRID.ParserCannotSetValue, element.GetType().FullName, propertyDefinition.AttributeInfo.Name, attribValue), e); 3743o = OptionallyMakeNullable(propertyType, o, attribInfo.Name); 3783ThrowExceptionWithLine(SR.Get(SRID.ParserCannotSetValue, currentTarget.GetType().FullName, attribInfo.Name, o), e); 5179attribInfo.EventInfo = ParserContext.XamlTypeMapper.GetClrEventInfo(currentParentType, attribInfo.Name); 5184attribInfo.EventInfo = currentParentType.GetEvent(attribInfo.Name, 5222return attribInfo.OwnerType.Name + "." + attribInfo.Name; 5952return _attributeInfo.Name;
src\Framework\System\Windows\Markup\BamlRecords.cs (1)
4849bamlBinaryWriter.Write(Name);
src\Framework\System\Windows\Markup\XamlTypeMapper.cs (3)
891object key = MapTable.GetAttributeInfoKey(ownerType.FullName, infoRecord.Name); 914string propName = attribInfo.Name; 952string propName = (isSetter ? "Set" : "Get") + attributeInfo.Name;