Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / ComponentModel / EditorAttribute.cs / 1 / EditorAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using System.Diagnostics; using System.Globalization; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = true)] public sealed class EditorAttribute : Attribute { private string baseTypeName; private string typeName; private string typeId; ///Specifies the editor to use to change a property. This class cannot be inherited. ////// public EditorAttribute() { this.typeName = string.Empty; this.baseTypeName = string.Empty; } ///Initializes a new instance of the ///class with the default editor, which is /// no editor. /// public EditorAttribute(string typeName, string baseTypeName) { string temp = typeName.ToUpper(CultureInfo.InvariantCulture); Debug.Assert(temp.IndexOf(".DLL") == -1, "Came across: " + typeName + " . Please remove the .dll extension"); this.typeName = typeName; this.baseTypeName = baseTypeName; } ///Initializes a new instance of the ///class with the type name and base type /// name of the editor. /// public EditorAttribute(string typeName, Type baseType) { string temp = typeName.ToUpper(CultureInfo.InvariantCulture); Debug.Assert(temp.IndexOf(".DLL") == -1, "Came across: " + typeName + " . Please remove the .dll extension"); this.typeName = typeName; this.baseTypeName = baseType.AssemblyQualifiedName; } ///Initializes a new instance of the ///class. /// public EditorAttribute(Type type, Type baseType) { this.typeName = type.AssemblyQualifiedName; this.baseTypeName = baseType.AssemblyQualifiedName; } ///Initializes a new instance of the ////// class. /// public string EditorBaseTypeName { get { return baseTypeName; } } ///Gets the name of the base class or interface serving as a lookup key for this editor. ////// public string EditorTypeName { get { return typeName; } } ///Gets the name of the editor class. ////// /// public override object TypeId { get { if (typeId == null) { string baseType = baseTypeName; int comma = baseType.IndexOf(','); if (comma != -1) { baseType = baseType.Substring(0, comma); } typeId = GetType().FullName + baseType; } return typeId; } } public override bool Equals(object obj) { if (obj == this) { return true; } EditorAttribute other = obj as EditorAttribute; return (other != null) && other.typeName == typeName && other.baseTypeName == baseTypeName; } public override int GetHashCode() { return base.GetHashCode(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// This defines a unique ID for this attribute type. It is used /// by filtering algorithms to identify two attributes that are /// the same type. For most attributes, this just returns the /// Type instance for the attribute. EditorAttribute overrides /// this to include the type of the editor base type. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using System.Diagnostics; using System.Globalization; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = true)] public sealed class EditorAttribute : Attribute { private string baseTypeName; private string typeName; private string typeId; ///Specifies the editor to use to change a property. This class cannot be inherited. ////// public EditorAttribute() { this.typeName = string.Empty; this.baseTypeName = string.Empty; } ///Initializes a new instance of the ///class with the default editor, which is /// no editor. /// public EditorAttribute(string typeName, string baseTypeName) { string temp = typeName.ToUpper(CultureInfo.InvariantCulture); Debug.Assert(temp.IndexOf(".DLL") == -1, "Came across: " + typeName + " . Please remove the .dll extension"); this.typeName = typeName; this.baseTypeName = baseTypeName; } ///Initializes a new instance of the ///class with the type name and base type /// name of the editor. /// public EditorAttribute(string typeName, Type baseType) { string temp = typeName.ToUpper(CultureInfo.InvariantCulture); Debug.Assert(temp.IndexOf(".DLL") == -1, "Came across: " + typeName + " . Please remove the .dll extension"); this.typeName = typeName; this.baseTypeName = baseType.AssemblyQualifiedName; } ///Initializes a new instance of the ///class. /// public EditorAttribute(Type type, Type baseType) { this.typeName = type.AssemblyQualifiedName; this.baseTypeName = baseType.AssemblyQualifiedName; } ///Initializes a new instance of the ////// class. /// public string EditorBaseTypeName { get { return baseTypeName; } } ///Gets the name of the base class or interface serving as a lookup key for this editor. ////// public string EditorTypeName { get { return typeName; } } ///Gets the name of the editor class. ////// /// public override object TypeId { get { if (typeId == null) { string baseType = baseTypeName; int comma = baseType.IndexOf(','); if (comma != -1) { baseType = baseType.Substring(0, comma); } typeId = GetType().FullName + baseType; } return typeId; } } public override bool Equals(object obj) { if (obj == this) { return true; } EditorAttribute other = obj as EditorAttribute; return (other != null) && other.typeName == typeName && other.baseTypeName == baseTypeName; } public override int GetHashCode() { return base.GetHashCode(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// This defines a unique ID for this attribute type. It is used /// by filtering algorithms to identify two attributes that are /// the same type. For most attributes, this just returns the /// Type instance for the attribute. EditorAttribute overrides /// this to include the type of the editor base type. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataServiceQueryProvider.cs
- PropertyChangingEventArgs.cs
- TreeNodeStyleCollection.cs
- CommandExpr.cs
- RequestValidator.cs
- DbConnectionPoolGroup.cs
- AddInActivator.cs
- TextStore.cs
- ExpressionLexer.cs
- DbParameterCollection.cs
- OrElse.cs
- RowUpdatedEventArgs.cs
- XmlSchemaNotation.cs
- TypeNameConverter.cs
- XPathAncestorQuery.cs
- ModuleBuilderData.cs
- Baml2006ReaderSettings.cs
- RefreshEventArgs.cs
- CommandPlan.cs
- LineUtil.cs
- XmlSchemaException.cs
- ValueTypeFixupInfo.cs
- WebPartCancelEventArgs.cs
- Vector3dCollection.cs
- ErrorTableItemStyle.cs
- CancelAsyncOperationRequest.cs
- UrlPath.cs
- ParameterBinding.cs
- ScalarType.cs
- CreateUserErrorEventArgs.cs
- CustomPopupPlacement.cs
- XmlDocumentFragment.cs
- SlipBehavior.cs
- FlowDocumentFormatter.cs
- TerminateDesigner.cs
- TableLayoutCellPaintEventArgs.cs
- BaseProcessor.cs
- PersonalizationProviderCollection.cs
- CacheVirtualItemsEvent.cs
- RedirectionProxy.cs
- XmlWhitespace.cs
- Message.cs
- AccessibilityHelperForXpWin2k3.cs
- XomlCompilerHelpers.cs
- ComponentResourceKeyConverter.cs
- SelectionRangeConverter.cs
- JavaScriptObjectDeserializer.cs
- SafeTokenHandle.cs
- RemoteWebConfigurationHost.cs
- ContextMenuService.cs
- SaveFileDialog.cs
- MetaChildrenColumn.cs
- XmlValidatingReaderImpl.cs
- HttpCachePolicyWrapper.cs
- FileRecordSequenceHelper.cs
- ColumnCollection.cs
- EnumUnknown.cs
- ISFClipboardData.cs
- EdmItemError.cs
- GridViewCancelEditEventArgs.cs
- StringFunctions.cs
- Thickness.cs
- DefaultBinder.cs
- PropertyDescriptorComparer.cs
- CutCopyPasteHelper.cs
- ConfigurationProperty.cs
- XmlProcessingInstruction.cs
- ScrollItemProviderWrapper.cs
- Handle.cs
- TextRangeEditTables.cs
- DefaultSection.cs
- TreeView.cs
- ActivityExecutorDelegateInfo.cs
- ValidationRule.cs
- XmlObjectSerializerContext.cs
- MissingMethodException.cs
- JapaneseLunisolarCalendar.cs
- ObjectListCommandEventArgs.cs
- _NestedMultipleAsyncResult.cs
- ArithmeticException.cs
- OrthographicCamera.cs
- RootDesignerSerializerAttribute.cs
- DataGridViewCellStyle.cs
- HtmlGenericControl.cs
- NullableDecimalAverageAggregationOperator.cs
- SequenceDesignerAccessibleObject.cs
- InputScope.cs
- DataGridViewCellConverter.cs
- DrawingCollection.cs
- WorkflowView.cs
- CodeValidator.cs
- XmlLangPropertyAttribute.cs
- RedistVersionInfo.cs
- RestHandlerFactory.cs
- SqlDataSourceEnumerator.cs
- Int64AnimationBase.cs
- UserControl.cs
- Renderer.cs
- BamlRecordWriter.cs
- InheritanceService.cs