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