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;
///
/// Specifies the editor to use to change a property. This class cannot be inherited.
///
[AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = true)]
public sealed class EditorAttribute : Attribute {
private string baseTypeName;
private string typeName;
private string typeId;
///
/// Initializes a new instance of the class with the default editor, which is
/// no editor.
///
public EditorAttribute() {
this.typeName = string.Empty;
this.baseTypeName = string.Empty;
}
///
/// Initializes a new instance of the class with the type name and base type
/// name of the 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.
///
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;
}
///
/// Gets the name of the base class or interface serving as a lookup key for this editor.
///
public string EditorBaseTypeName {
get {
return baseTypeName;
}
}
///
/// Gets the name of the editor class.
///
public string EditorTypeName {
get {
return typeName;
}
}
///
///
///
/// 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.
///
///
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.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
/*
*/
namespace System.ComponentModel {
using System.Diagnostics;
using System.Globalization;
using System.Security.Permissions;
///
/// Specifies the editor to use to change a property. This class cannot be inherited.
///
[AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = true)]
public sealed class EditorAttribute : Attribute {
private string baseTypeName;
private string typeName;
private string typeId;
///
/// Initializes a new instance of the class with the default editor, which is
/// no editor.
///
public EditorAttribute() {
this.typeName = string.Empty;
this.baseTypeName = string.Empty;
}
///
/// Initializes a new instance of the class with the type name and base type
/// name of the 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.
///
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;
}
///
/// Gets the name of the base class or interface serving as a lookup key for this editor.
///
public string EditorBaseTypeName {
get {
return baseTypeName;
}
}
///
/// Gets the name of the editor class.
///
public string EditorTypeName {
get {
return typeName;
}
}
///
///
///
/// 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.
///
///
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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebControlsSection.cs
- Propagator.cs
- CustomError.cs
- URLString.cs
- ButtonFieldBase.cs
- ExpressionBinding.cs
- SmiMetaData.cs
- DefaultValidator.cs
- MobileControlsSectionHelper.cs
- FloatUtil.cs
- SecurityException.cs
- FontFamilyIdentifier.cs
- ConfigurationValidatorAttribute.cs
- HierarchicalDataBoundControl.cs
- HtmlInputControl.cs
- AddInStore.cs
- CodePropertyReferenceExpression.cs
- NameObjectCollectionBase.cs
- MimeMapping.cs
- WebHttpDispatchOperationSelector.cs
- WebDisplayNameAttribute.cs
- LocatorManager.cs
- CultureTableRecord.cs
- TypeUsage.cs
- WinInetCache.cs
- DataGridViewCellValueEventArgs.cs
- FilterQuery.cs
- InputReport.cs
- EventWaitHandleSecurity.cs
- ProviderSettingsCollection.cs
- LinqDataSourceHelper.cs
- DecimalConverter.cs
- SamlAuthorizationDecisionStatement.cs
- NextPreviousPagerField.cs
- HtmlHistory.cs
- CustomAttribute.cs
- DoubleLinkList.cs
- ImageList.cs
- ButtonFlatAdapter.cs
- WebServiceErrorEvent.cs
- InputLanguageCollection.cs
- GridViewRowCollection.cs
- BuildDependencySet.cs
- LinqDataSourceValidationException.cs
- DeploymentSection.cs
- XmlQuerySequence.cs
- SpnegoTokenAuthenticator.cs
- _UncName.cs
- SocketException.cs
- ToolStripSplitButton.cs
- ProfileSection.cs
- DataSourceHelper.cs
- SchemaNames.cs
- XmlLoader.cs
- PolicyValidationException.cs
- WebConfigurationHostFileChange.cs
- Configuration.cs
- InheritanceRules.cs
- TypeConverterAttribute.cs
- CodeCastExpression.cs
- BindingValueChangedEventArgs.cs
- OutputScope.cs
- LinkButton.cs
- DataReaderContainer.cs
- SqlDataSourceTableQuery.cs
- PermissionSetEnumerator.cs
- HandledMouseEvent.cs
- SafeRegistryHandle.cs
- CodeAttributeArgument.cs
- RectAnimationBase.cs
- WebAdminConfigurationHelper.cs
- TextEffectResolver.cs
- WebPart.cs
- DataTableExtensions.cs
- translator.cs
- StylusSystemGestureEventArgs.cs
- PauseStoryboard.cs
- ContextInformation.cs
- ObjectDataSourceStatusEventArgs.cs
- FocusTracker.cs
- DesignerOptionService.cs
- FilterException.cs
- ExceptionHandlerDesigner.cs
- SqlDeflator.cs
- CellLabel.cs
- Util.cs
- RectConverter.cs
- ToolStripStatusLabel.cs
- selecteditemcollection.cs
- ContentOperations.cs
- LineGeometry.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- ValueOfAction.cs
- x509utils.cs
- OdbcParameterCollection.cs
- SqlGatherProducedAliases.cs
- BrushValueSerializer.cs
- CodeCommentStatement.cs
- HtmlSelectionListAdapter.cs
- HtmlFormParameterReader.cs