Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / EditorAttribute.cs / 1305376 / 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
- SQLStringStorage.cs
- ValidationEventArgs.cs
- LinearQuaternionKeyFrame.cs
- SqlVisitor.cs
- ObjectDataSourceSelectingEventArgs.cs
- Brush.cs
- basenumberconverter.cs
- EndEvent.cs
- IsolatedStorageException.cs
- StubHelpers.cs
- SpeakInfo.cs
- SchemaElementLookUpTableEnumerator.cs
- WebControl.cs
- X509ChainElement.cs
- MetadataItem_Static.cs
- EventLogPermissionAttribute.cs
- GcSettings.cs
- COM2FontConverter.cs
- TreeViewItem.cs
- RequestSecurityTokenResponseCollection.cs
- Encoder.cs
- XmlSchemaCollection.cs
- UrlAuthorizationModule.cs
- StreamAsIStream.cs
- XmlTypeMapping.cs
- ThicknessAnimationBase.cs
- TrailingSpaceComparer.cs
- LocalizationParserHooks.cs
- DetailsViewInsertedEventArgs.cs
- SynchronizationValidator.cs
- ComplexType.cs
- ControlBuilder.cs
- ApplicationServicesHostFactory.cs
- DateTimeConstantAttribute.cs
- CommunicationObjectManager.cs
- DefaultValueConverter.cs
- HttpHandlersInstallComponent.cs
- DbProviderConfigurationHandler.cs
- EllipseGeometry.cs
- XmlSerializerNamespaces.cs
- SafeCancelMibChangeNotify.cs
- SqlConnectionPoolGroupProviderInfo.cs
- RuntimeWrappedException.cs
- ProxyWebPart.cs
- SHA1Cng.cs
- ZoomPercentageConverter.cs
- PropertyRecord.cs
- RectAnimationUsingKeyFrames.cs
- TransformerTypeCollection.cs
- ThreadExceptionEvent.cs
- Mutex.cs
- SuppressMessageAttribute.cs
- InkPresenter.cs
- CompiledQueryCacheKey.cs
- WebProxyScriptElement.cs
- Exceptions.cs
- ArgumentDirectionHelper.cs
- ScaleTransform3D.cs
- XamlPathDataSerializer.cs
- Typography.cs
- Int32Storage.cs
- StatusBarPanelClickEvent.cs
- TransformerInfoCollection.cs
- SelfIssuedAuthRSAPKCS1SignatureDeformatter.cs
- DataGridViewColumn.cs
- objectresult_tresulttype.cs
- RedistVersionInfo.cs
- IdentityReference.cs
- StringUtil.cs
- AccessibleObject.cs
- Int16Storage.cs
- UIHelper.cs
- ToolStripTextBox.cs
- ExecutorLocksHeldException.cs
- XsltArgumentList.cs
- XmlAttribute.cs
- ModelPerspective.cs
- QueryLifecycle.cs
- ReflectionPermission.cs
- Camera.cs
- Utils.cs
- TreeViewAutomationPeer.cs
- DataGridRow.cs
- XmlNotation.cs
- DiscreteKeyFrames.cs
- ConfigurationFileMap.cs
- XamlPoint3DCollectionSerializer.cs
- StringExpressionSet.cs
- OrderByQueryOptionExpression.cs
- UserControlFileEditor.cs
- DataColumnPropertyDescriptor.cs
- SurrogateEncoder.cs
- AuthorizationContext.cs
- DataGridViewColumnHeaderCell.cs
- LineSegment.cs
- HashAlgorithm.cs
- ResXFileRef.cs
- HGlobalSafeHandle.cs
- RecordBuilder.cs
- TemplatedMailWebEventProvider.cs