2 overrides of Name
System.Workflow.Activities (1)
System.Workflow.ComponentModel (1)
387 references to Name
PresentationFramework (24)
System (50)
compmod\system\componentmodel\ReflectEventDescriptor.cs (8)
200throw new ArgumentException(SR.GetString(SR.ErrorInvalidEventHandler, Name));
253Debug.Assert(removeMethod != null, "Null remove method for " + Name);
256Debug.Assert(addMethod != null, "Null remove method for " + Name);
356realEvent = this.componentClass.GetEvent(Name);
365addMethod = FindMethod(componentClass, "AddOn" + Name, argsType, typeof(void));
366removeMethod = FindMethod(componentClass, "RemoveOn" + Name, argsType, typeof(void));
368Debug.Fail("Missing event accessors for " + componentClass.FullName + "." + Name);
369throw new ArgumentException(SR.GetString(SR.ErrorMissingEventAccessors, Name));
compmod\system\componentmodel\ReflectPropertyDescriptor.cs (15)
265realChangedEvent = TypeDescriptor.GetEvents(ComponentType)[string.Format(CultureInfo.InvariantCulture, "{0}Changed", Name)];
346propInfo = componentClass.GetProperty(Name, bindingFlags, null, PropertyType, new Type[0], new ParameterModifier[0]);
352throw new InvalidOperationException(SR.GetString(SR.ErrorMissingPropertyAccessors, componentClass.FullName + "." + Name));
356getMethod = FindMethod(componentClass, "Get" + Name, new Type[] { receiverType }, type);
358throw new ArgumentException(SR.GetString(SR.ErrorMissingPropertyAccessors, Name));
423resetMethod = FindMethod(componentClass, "Reset" + Name, args, typeof(void), /* publicOnly= */ false);
482propInfo = componentClass.GetProperty(Name, bindingFlags, null, PropertyType, new Type[0], new ParameterModifier[0]);
489setMethod = FindMethod(componentClass, "Set" + Name,
526shouldSerializeMethod = FindMethod(componentClass, "ShouldSerialize" + Name,
830memberInfo = currentReflectType.GetMethod("Get" + Name, bindingFlags, null, new Type[] { receiverType }, null);
833memberInfo = currentReflectType.GetProperty(Name, bindingFlags, null, PropertyType, new Type[0], new ParameterModifier[0]);
927Debug.WriteLineIf(PropDescUsageSwitch.TraceVerbose, "[" + Name + "]: ---> returning: null");
964throw new TargetInvocationException(SR.GetString(SR.ErrorPropertyAccessorException, Name, name, message), t);
967Debug.WriteLineIf(PropDescUsageSwitch.TraceVerbose, "[" + Name + "]: ---> returning: null");
978String.Compare(e.PropertyName, Name, true, System.Globalization.CultureInfo.InvariantCulture) == 0) {
System.Activities (10)
System.Activities.Presentation (14)
System.ComponentModel.DataAnnotations (3)
System.Data (39)
fx\src\data\System\Data\xmlsaver.cs (15)
1590 == String.Compare(pd.Name, "Namespace" , StringComparison.Ordinal) ||
1600 == String.Compare(pd.Name, "PrimaryKey" , StringComparison.Ordinal) ||
1610 == String.Compare(pd.Name, "ColumnName" , StringComparison.Ordinal) ||
1620 == String.Compare(pd.Name, "DefaultValue" , StringComparison.Ordinal) ||
1630 == String.Compare(pd.Name, "TableName" , StringComparison.Ordinal) ||
1640 == String.Compare(pd.Name, "DataSetName" , StringComparison.Ordinal) ||
1650 == String.Compare(pd.Name, "AllowDBNull" , StringComparison.Ordinal) ||
1660 == String.Compare(pd.Name, "Unique" , StringComparison.Ordinal) ||
1670 == String.Compare(pd.Name, "NestedInDataSet" , StringComparison.Ordinal) ||
1680 == String.Compare(pd.Name, "Locale" , StringComparison.Ordinal) ||
1690 == String.Compare(pd.Name, "CaseSensitive", StringComparison.Ordinal) ||
1700 == String.Compare(pd.Name, "RemotingFormat" , StringComparison.Ordinal)
176if (0 == String.Compare(pd.Name, "DataType", StringComparison.Ordinal)) {
191if (0 == String.Compare(pd.Name, "Attribute", StringComparison.Ordinal)) {
197root.SetAttribute(pd.Name, Keywords.MSDNS, textValue);
System.Data.Linq (1)
System.Web (23)
System.Web.DataVisualization (3)
System.Web.DynamicData (3)
System.Web.Entity (3)
System.Web.Entity.Design (1)
System.Web.Extensions (7)
System.Web.Mobile (39)
System.Windows.Forms (61)
System.Windows.Forms.DataVisualization (3)
System.Workflow.Activities (38)
System.Workflow.ComponentModel (52)
AuthoringOM\Design\PropertyDescriptors.cs (10)
151if (!properties.ContainsKey(prop.Name))
152properties.Add(prop.Name, prop);
170if (!props.Contains(property.Name))
171props.Add(property.Name, property);
183if (string.Equals(propDesc.Name, "Name", StringComparison.Ordinal) && typeof(Activity).IsAssignableFrom(propDesc.ComponentType))
327DependencyProperty dependencyProperty = DependencyProperty.FromName(Name, ComponentType);
349DependencyProperty dependencyProperty = DependencyProperty.FromName(Name, ComponentType);
431DependencyProperty dependencyProperty = DependencyProperty.FromName(context.PropertyDescriptor.Name, context.PropertyDescriptor.ComponentType);
667throw new InvalidOperationException(SR.GetString(SR.Error_PropertyTypeNotDefined, context.PropertyDescriptor.Name, typeof(ActivityBind).Name, typeof(IDynamicPropertyTypeProvider).Name));
689DependencyProperty dependencyProperty = DependencyProperty.FromName(propertyDescriptor.Name, propertyDescriptor.ComponentType);
System.Workflow.Runtime (1)
System.WorkflowServices (6)
WindowsBase (6)