Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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(); } } }/// 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
- MetadataArtifactLoaderComposite.cs
- VirtualPathUtility.cs
- ModuleBuilder.cs
- TextEditorMouse.cs
- SharedHttpTransportManager.cs
- DataColumnCollection.cs
- SBCSCodePageEncoding.cs
- ClientRolePrincipal.cs
- JoinGraph.cs
- TdsParser.cs
- Types.cs
- TreeNodeClickEventArgs.cs
- XmlUrlResolver.cs
- Span.cs
- PersonalizationState.cs
- EntityCodeGenerator.cs
- HtmlHistory.cs
- propertytag.cs
- OlePropertyStructs.cs
- HTMLTextWriter.cs
- DataServiceRequest.cs
- DataKey.cs
- SendingRequestEventArgs.cs
- StrokeNodeOperations2.cs
- OTFRasterizer.cs
- ParallelDesigner.cs
- MsmqChannelListenerBase.cs
- TaiwanCalendar.cs
- Int64Storage.cs
- _SafeNetHandles.cs
- SessionParameter.cs
- HyperlinkAutomationPeer.cs
- validation.cs
- AssertFilter.cs
- MultipleViewProviderWrapper.cs
- ArrayList.cs
- ImageMapEventArgs.cs
- ThumbButtonInfo.cs
- Int32AnimationUsingKeyFrames.cs
- DBCommand.cs
- MimeMapping.cs
- GroupStyle.cs
- AutoSizeToolBoxItem.cs
- XhtmlConformanceSection.cs
- TransformationRules.cs
- SymDocumentType.cs
- SecurityTokenAttachmentMode.cs
- RenderDataDrawingContext.cs
- uribuilder.cs
- TemplateComponentConnector.cs
- DataControlButton.cs
- ObjectContextServiceProvider.cs
- autovalidator.cs
- FormViewUpdatedEventArgs.cs
- FontInfo.cs
- RotateTransform.cs
- sqlpipe.cs
- DynamicValidator.cs
- oledbconnectionstring.cs
- DataGridViewColumnTypeEditor.cs
- CodeTypeDeclaration.cs
- FileLogRecord.cs
- AsnEncodedData.cs
- ExceptionUtil.cs
- Label.cs
- Help.cs
- AsymmetricKeyExchangeFormatter.cs
- SafeFileHandle.cs
- UnsafeNativeMethods.cs
- XmlCharCheckingReader.cs
- ArrayMergeHelper.cs
- MobileCategoryAttribute.cs
- DrawToolTipEventArgs.cs
- TerminatorSinks.cs
- DelegatingConfigHost.cs
- UTF8Encoding.cs
- HTMLTagNameToTypeMapper.cs
- Identifier.cs
- ClientData.cs
- DataRelation.cs
- ScrollChrome.cs
- Int32KeyFrameCollection.cs
- ErrorTableItemStyle.cs
- UTF32Encoding.cs
- FixedTextBuilder.cs
- SystemKeyConverter.cs
- safelink.cs
- XamlParser.cs
- ObjectManager.cs
- TrayIconDesigner.cs
- LockedHandleGlyph.cs
- ApplicationServicesHostFactory.cs
- MimePart.cs
- Trustee.cs
- TransformerInfoCollection.cs
- XPathNavigator.cs
- DataTemplateKey.cs
- SecurityPolicySection.cs
- BCryptNative.cs
- DataListItemEventArgs.cs