Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- DefaultValueAttribute.cs
- OrderPreservingPipeliningSpoolingTask.cs
- TypedDataSetSchemaImporterExtensionFx35.cs
- DesignerCategoryAttribute.cs
- AsymmetricAlgorithm.cs
- PositiveTimeSpanValidatorAttribute.cs
- InvalidAsynchronousStateException.cs
- WebSysDescriptionAttribute.cs
- DbParameterHelper.cs
- SecurityMessageProperty.cs
- PlatformCulture.cs
- MetaType.cs
- NameTable.cs
- DbBuffer.cs
- CharAnimationUsingKeyFrames.cs
- Parser.cs
- VectorKeyFrameCollection.cs
- BidirectionalDictionary.cs
- Scalars.cs
- BezierSegment.cs
- SqlBooleanizer.cs
- ScriptModule.cs
- XamlClipboardData.cs
- LineServices.cs
- TextTreeObjectNode.cs
- XPathCompileException.cs
- DBConcurrencyException.cs
- AppSettingsExpressionBuilder.cs
- X509ChainPolicy.cs
- MethodBuilder.cs
- OdbcConnectionString.cs
- ZipArchive.cs
- RegistryDataKey.cs
- Font.cs
- ComboBox.cs
- ToolboxItemFilterAttribute.cs
- TransferMode.cs
- ProcessThreadCollection.cs
- DictionaryItemsCollection.cs
- CodeDomConfigurationHandler.cs
- RenderDataDrawingContext.cs
- Quaternion.cs
- ValueUnavailableException.cs
- Intellisense.cs
- RegexFCD.cs
- AbsoluteQuery.cs
- WinInetCache.cs
- CommonDialog.cs
- QilParameter.cs
- ToolStripItemClickedEventArgs.cs
- WebBrowserNavigatingEventHandler.cs
- DesignerForm.cs
- GlobalAclOperationRequirement.cs
- WindowShowOrOpenTracker.cs
- ActivityBuilderHelper.cs
- XDeferredAxisSource.cs
- SocketPermission.cs
- NavigateEvent.cs
- SQLMoneyStorage.cs
- WebPartVerb.cs
- DocumentSequence.cs
- EventLogPermission.cs
- BlobPersonalizationState.cs
- DataServiceConfiguration.cs
- SecurityContext.cs
- ToolStripInSituService.cs
- DiscoveryCallbackBehavior.cs
- Effect.cs
- GroupLabel.cs
- PrintingPermissionAttribute.cs
- Configuration.cs
- TextModifier.cs
- GenericIdentity.cs
- _DigestClient.cs
- BmpBitmapEncoder.cs
- ToolCreatedEventArgs.cs
- ReferencedAssembly.cs
- QilInvokeEarlyBound.cs
- PreviousTrackingServiceAttribute.cs
- ImageSourceConverter.cs
- FixedFlowMap.cs
- TrustLevel.cs
- DataTransferEventArgs.cs
- DbConnectionInternal.cs
- RefExpr.cs
- Inflater.cs
- UserControlBuildProvider.cs
- ComplexPropertyEntry.cs
- Utility.cs
- SerTrace.cs
- ProtocolsConfigurationEntry.cs
- DataGridViewUtilities.cs
- ProbeDuplexAsyncResult.cs
- CompiledRegexRunner.cs
- EncodingInfo.cs
- SqlClientPermission.cs
- SchemaImporterExtensionElementCollection.cs
- CompilationUtil.cs
- ConfigurationSectionHelper.cs
- FileResponseElement.cs