3 writes to Name
PresentationFramework (3)
System\Windows\Markup\BamlMapTable.cs (2)
629
record.
Name
= GetAttributeNameFromKnownId(knownId);
1341
Name
= fieldName,
System\Windows\Markup\BamlRecords.cs (1)
4581
Name
= bamlBinaryReader.ReadString();
30 references to Name
PresentationFramework (30)
System\Windows\Markup\BamlMapTable.cs (11)
374
object key = GetAttributeInfoKey(info.OwnerType.FullName, info.
Name
);
639
record.PropInfo = ownerType.GetProperty(record.
Name
, BindingFlags.Instance | BindingFlags.Public);
676
return record.
Name
;
692
return (record.OwnerTypeId == ownerTypeId) && (string.Equals(record.
Name
, name, StringComparison.Ordinal));
729
name = record.
Name
;
822
propName = $"{attributeInfo.OwnerType.FullName}.{attributeInfo.
Name
}";
829
propName = attributeInfo.
Name
;
914
bamlAttributeInfoRecord.
Name
,
932
bamlAttributeInfoRecord.Event = XamlTypeMapper.RoutedEventFromName(bamlAttributeInfoRecord.
Name
,ownerType);
1635
Debug.Assert(AttributeIdMap.Count == record.AttributeId || record.
Name
== AttributeIdMap[record.AttributeId].
Name
);
System\Windows\Markup\BamlReader.cs (7)
990
throw new InvalidOperationException(SR.Format(SR.BamlReaderNoOwnerType, attrInfo.
Name
, AssemblyName));
996
attrInfo.PropInfo = attrInfo.OwnerType.GetProperty(attrInfo.
Name
,
1016
if (infos[i].Name == attrInfo.
Name
)
1035
string propertyName = attrInfo.
Name
;
2363
nodeInfo.LocalName = attrInfo.
Name
;
2417
propName = attrInfo.
Name
;
2492
propName = attrInfo.
Name
;
System\Windows\Markup\BamlRecordReader.cs (8)
2361
Member = attribInfo.
Name
2906
ThrowExceptionWithLine(SR.Format(SR.ParserCannotSetValue, element.GetType().FullName, propertyDefinition.AttributeInfo.
Name
, attribValue), e);
3688
o = OptionallyMakeNullable(propertyType, o, attribInfo.
Name
);
3727
ThrowExceptionWithLine(SR.Format(SR.ParserCannotSetValue, currentTarget.GetType().FullName, attribInfo.
Name
, o), e);
5098
attribInfo.EventInfo = ParserContext.XamlTypeMapper.GetClrEventInfo(currentParentType, attribInfo.
Name
);
5103
attribInfo.EventInfo = currentParentType.GetEvent(attribInfo.
Name
,
5141
return $"{attribInfo.OwnerType.Name}.{attribInfo.
Name
}";
5858
return _attributeInfo.
Name
;
System\Windows\Markup\BamlRecords.cs (1)
4592
bamlBinaryWriter.Write(
Name
);
System\Windows\Markup\XamlTypeMapper.cs (3)
797
object key = MapTable.GetAttributeInfoKey(ownerType.FullName, infoRecord.
Name
);
820
string propName = attribInfo.
Name
;
858
string propName = (isSetter ? "Set" : "Get") + attributeInfo.
Name
;