13 references to Name
System (4)
compmod\system\componentmodel\DefaultPropertyAttribute.cs (1)
56
return (other != null) && other.
Name
== name;
compmod\system\componentmodel\ReflectTypeDescriptionProvider.cs (3)
1736
if (attr != null && attr.
Name
!= null)
1740
return TypeDescriptor.GetProperties(instance)[attr.
Name
];
1744
return TypeDescriptor.GetProperties(_type)[attr.
Name
];
System.Activities.Presentation (3)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\ExtensibilityAccessor.cs (1)
266
defaultProperty = dpa == null ? null : dpa.
Name
;
System.Activities.Presentation\System\Activities\Presentation\Model\ModelUtilities.cs (2)
54
if (propAttr != null && !string.IsNullOrEmpty(propAttr.
Name
))
56
ModelProperty prop = item.Properties.Find(propAttr.
Name
);
System.Data (3)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\ExtensibilityAccessor.cs (1)
266
defaultProperty = dpa == null ? null : dpa.
Name
;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelUtilities.cs (2)
54
if (propAttr != null && !string.IsNullOrEmpty(propAttr.
Name
))
56
ModelProperty prop = item.Properties.Find(propAttr.
Name
);
System.Workflow.ComponentModel (3)
AuthoringOM\Design\XomlDesignerLoader.cs (3)
883
if (aliasPropertyNameAttribute != null && aliasPropertyNameAttribute.
Name
!= null && aliasPropertyNameAttribute.
Name
.Length > 0)
884
fullAliasName = propDesc.Name + "." + aliasPropertyNameAttribute.
Name
;