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
- MergeFilterQuery.cs
- NumberFunctions.cs
- WebReferenceCollection.cs
- CodeEntryPointMethod.cs
- FormsAuthenticationConfiguration.cs
- UrlPath.cs
- SignatureDescription.cs
- HexParser.cs
- GridViewRowPresenter.cs
- ImageDrawing.cs
- Thickness.cs
- MembershipSection.cs
- SqlDataSourceCustomCommandEditor.cs
- DBSqlParserTableCollection.cs
- WinFormsSecurity.cs
- WmpBitmapDecoder.cs
- SpecularMaterial.cs
- WaitHandle.cs
- UrlPath.cs
- CommittableTransaction.cs
- SchemaNames.cs
- CodeGenerationManager.cs
- SortAction.cs
- QilFunction.cs
- StorageRoot.cs
- WebConfigurationFileMap.cs
- XmlCodeExporter.cs
- Rule.cs
- CodeIdentifiers.cs
- ByteStorage.cs
- NativeMethods.cs
- DbProviderServices.cs
- GridViewDeleteEventArgs.cs
- SettingsPropertyValueCollection.cs
- FusionWrap.cs
- Inline.cs
- MimeBasePart.cs
- XPathArrayIterator.cs
- xmlglyphRunInfo.cs
- NotCondition.cs
- CatalogZoneBase.cs
- DataServiceProviderWrapper.cs
- WrapPanel.cs
- x509utils.cs
- CodeDOMProvider.cs
- TransformerTypeCollection.cs
- ExpressionBuilderCollection.cs
- PageClientProxyGenerator.cs
- BlurBitmapEffect.cs
- ArrayItemReference.cs
- MobileUserControl.cs
- XmlJsonReader.cs
- PageCatalogPart.cs
- IntSecurity.cs
- DataGridViewCellConverter.cs
- RecognizedAudio.cs
- ConfigXmlWhitespace.cs
- XslCompiledTransform.cs
- TrackingLocationCollection.cs
- SiteOfOriginPart.cs
- MdiWindowListItemConverter.cs
- FontNameConverter.cs
- StylusEventArgs.cs
- WeakHashtable.cs
- ObjectStateFormatter.cs
- SimpleHandlerFactory.cs
- UIntPtr.cs
- ListMarkerSourceInfo.cs
- RelAssertionDirectKeyIdentifierClause.cs
- TrackingAnnotationCollection.cs
- MonitorWrapper.cs
- JavaScriptObjectDeserializer.cs
- SecuritySessionServerSettings.cs
- PointCollectionConverter.cs
- DataGridRowsPresenter.cs
- ColorTranslator.cs
- WeakReferenceEnumerator.cs
- PerformanceCounterCategory.cs
- PluggableProtocol.cs
- CachedFontFamily.cs
- BehaviorDragDropEventArgs.cs
- CommonDialog.cs
- WebBrowserSiteBase.cs
- FamilyCollection.cs
- TabControl.cs
- ClientProxyGenerator.cs
- MatrixConverter.cs
- ValidateNames.cs
- RightsManagementSuppressedStream.cs
- WindowsHyperlink.cs
- PropertyTab.cs
- WmlLabelAdapter.cs
- XmlWriterSettings.cs
- ValidationPropertyAttribute.cs
- TableSectionStyle.cs
- ContentType.cs
- Aggregates.cs
- CaseInsensitiveComparer.cs
- ComponentResourceManager.cs
- UnsafeNativeMethods.cs