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