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