Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / ComponentModel / Design / InheritanceAttribute.cs / 1 / InheritanceAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event)] public sealed class InheritanceAttribute : Attribute { private readonly InheritanceLevel inheritanceLevel; ///Marks instances of objects that are inherited from their base class. This /// class cannot be inherited. ////// public static readonly InheritanceAttribute Inherited = new InheritanceAttribute(InheritanceLevel.Inherited); ////// Specifies that the component is inherited. This field is /// read-only. /// ////// public static readonly InheritanceAttribute InheritedReadOnly = new InheritanceAttribute(InheritanceLevel.InheritedReadOnly); ////// Specifies that /// the component is inherited and is read-only. This field is /// read-only. /// ////// public static readonly InheritanceAttribute NotInherited = new InheritanceAttribute(InheritanceLevel.NotInherited); ////// Specifies that the component is not inherited. This field is /// read-only. /// ////// public static readonly InheritanceAttribute Default = NotInherited; ////// Specifies the default value for /// the InheritanceAttribute as NotInherited. /// ////// public InheritanceAttribute() { inheritanceLevel = Default.inheritanceLevel; } ///Initializes a new instance of the System.ComponentModel.Design.InheritanceAttribute /// class. ////// public InheritanceAttribute(InheritanceLevel inheritanceLevel) { this.inheritanceLevel = inheritanceLevel; } ///Initializes a new instance of the System.ComponentModel.Design.InheritanceAttribute class /// with the specified inheritance /// level. ////// public InheritanceLevel InheritanceLevel { get { return inheritanceLevel; } } ////// Gets or sets /// the current inheritance level stored in this attribute. /// ////// public override bool Equals(object value) { if (value == this) { return true; } if (!(value is InheritanceAttribute)) { return false; } InheritanceLevel valueLevel = ((InheritanceAttribute)value).InheritanceLevel; return (valueLevel == inheritanceLevel); } ////// Override to test for equality. /// ////// public override int GetHashCode() { return base.GetHashCode(); } ////// Returns the hashcode for this object. /// ////// public override bool IsDefaultAttribute() { return (this.Equals(Default)); } ////// Gets whether this attribute is the default. /// ////// public override string ToString() { return TypeDescriptor.GetConverter(typeof(InheritanceLevel)).ConvertToString(InheritanceLevel); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Converts this attribute to a string. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event)] public sealed class InheritanceAttribute : Attribute { private readonly InheritanceLevel inheritanceLevel; ///Marks instances of objects that are inherited from their base class. This /// class cannot be inherited. ////// public static readonly InheritanceAttribute Inherited = new InheritanceAttribute(InheritanceLevel.Inherited); ////// Specifies that the component is inherited. This field is /// read-only. /// ////// public static readonly InheritanceAttribute InheritedReadOnly = new InheritanceAttribute(InheritanceLevel.InheritedReadOnly); ////// Specifies that /// the component is inherited and is read-only. This field is /// read-only. /// ////// public static readonly InheritanceAttribute NotInherited = new InheritanceAttribute(InheritanceLevel.NotInherited); ////// Specifies that the component is not inherited. This field is /// read-only. /// ////// public static readonly InheritanceAttribute Default = NotInherited; ////// Specifies the default value for /// the InheritanceAttribute as NotInherited. /// ////// public InheritanceAttribute() { inheritanceLevel = Default.inheritanceLevel; } ///Initializes a new instance of the System.ComponentModel.Design.InheritanceAttribute /// class. ////// public InheritanceAttribute(InheritanceLevel inheritanceLevel) { this.inheritanceLevel = inheritanceLevel; } ///Initializes a new instance of the System.ComponentModel.Design.InheritanceAttribute class /// with the specified inheritance /// level. ////// public InheritanceLevel InheritanceLevel { get { return inheritanceLevel; } } ////// Gets or sets /// the current inheritance level stored in this attribute. /// ////// public override bool Equals(object value) { if (value == this) { return true; } if (!(value is InheritanceAttribute)) { return false; } InheritanceLevel valueLevel = ((InheritanceAttribute)value).InheritanceLevel; return (valueLevel == inheritanceLevel); } ////// Override to test for equality. /// ////// public override int GetHashCode() { return base.GetHashCode(); } ////// Returns the hashcode for this object. /// ////// public override bool IsDefaultAttribute() { return (this.Equals(Default)); } ////// Gets whether this attribute is the default. /// ////// public override string ToString() { return TypeDescriptor.GetConverter(typeof(InheritanceLevel)).ConvertToString(InheritanceLevel); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Converts this attribute to a string. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Stack.cs
- GeneralTransform3DGroup.cs
- MonthCalendar.cs
- LogicalExpr.cs
- HtmlForm.cs
- SqlExpander.cs
- SafeLocalMemHandle.cs
- RemoteX509AsymmetricSecurityKey.cs
- ClipboardData.cs
- Domain.cs
- WebPartManagerInternals.cs
- _SslStream.cs
- CompiledQueryCacheKey.cs
- login.cs
- RequestDescription.cs
- InputBinder.cs
- DiscardableAttribute.cs
- SkewTransform.cs
- PenThreadWorker.cs
- UnsafeNativeMethodsCLR.cs
- IntPtr.cs
- ConfigurationStrings.cs
- SqlTransaction.cs
- ToolboxDataAttribute.cs
- ExceptionUtil.cs
- WebServicesSection.cs
- CancellableEnumerable.cs
- ProtocolsConfigurationEntry.cs
- EnumBuilder.cs
- UserUseLicenseDictionaryLoader.cs
- PersonalizationAdministration.cs
- ipaddressinformationcollection.cs
- ToolStripButton.cs
- ToolboxControl.cs
- DetailsViewUpdateEventArgs.cs
- TargetParameterCountException.cs
- InlineUIContainer.cs
- _ConnectionGroup.cs
- CustomAttribute.cs
- HistoryEventArgs.cs
- WebSysDisplayNameAttribute.cs
- Command.cs
- AlignmentYValidation.cs
- PipelineDeploymentState.cs
- XsltArgumentList.cs
- _ConnectOverlappedAsyncResult.cs
- XmlIgnoreAttribute.cs
- CodeEntryPointMethod.cs
- ToolStripLocationCancelEventArgs.cs
- UseLicense.cs
- AssignDesigner.xaml.cs
- UrlPath.cs
- Int32EqualityComparer.cs
- HttpModuleAction.cs
- HandleScope.cs
- RtfControlWordInfo.cs
- SettingsPropertyNotFoundException.cs
- ZoneMembershipCondition.cs
- InheritablePropertyChangeInfo.cs
- DependencyPropertyAttribute.cs
- InstanceNotFoundException.cs
- PageHandlerFactory.cs
- ApplicationFileParser.cs
- Rotation3DAnimationUsingKeyFrames.cs
- ZipIOModeEnforcingStream.cs
- ImageIndexEditor.cs
- HashAlgorithm.cs
- CompositionTarget.cs
- IdentifierCollection.cs
- PerspectiveCamera.cs
- MergePropertyDescriptor.cs
- WindowsGraphicsCacheManager.cs
- controlskin.cs
- exports.cs
- BitmapMetadataBlob.cs
- Pair.cs
- BCryptHashAlgorithm.cs
- CompositeScriptReference.cs
- XmlSerializerFaultFormatter.cs
- PageStatePersister.cs
- CryptoKeySecurity.cs
- ServiceInfoCollection.cs
- ConnectionPoolRegistry.cs
- SystemParameters.cs
- FrameworkElement.cs
- RowToParametersTransformer.cs
- HtmlInputControl.cs
- WebConfigurationHostFileChange.cs
- DeclaredTypeElement.cs
- XmlQualifiedNameTest.cs
- DataGridViewToolTip.cs
- OutputScope.cs
- GridViewEditEventArgs.cs
- Assembly.cs
- ConsoleCancelEventArgs.cs
- UIAgentRequest.cs
- Win32KeyboardDevice.cs
- ProviderConnectionPointCollection.cs
- TableLayout.cs
- PerformanceCountersBase.cs