Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / ComponentModel / Design / NotifyParentPropertyAttribute.cs / 1 / NotifyParentPropertyAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using System; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.Property)] public sealed class NotifyParentPropertyAttribute : Attribute { ////// Indicates whether the parent property is notified /// if a child namespace property is modified. /// ////// public static readonly NotifyParentPropertyAttribute Yes = new NotifyParentPropertyAttribute(true); ////// Specifies that the parent property should be notified on changes to the child class property. This field is read-only. /// ////// public static readonly NotifyParentPropertyAttribute No = new NotifyParentPropertyAttribute(false); ///Specifies that the parent property should not be notified of changes to the child class property. This field is read-only. ////// public static readonly NotifyParentPropertyAttribute Default = No; private bool notifyParent = false; ///Specifies the default attribute state, that the parent property should not be notified of changes to the child class property. /// This field is read-only. ////// public NotifyParentPropertyAttribute(bool notifyParent) { this.notifyParent = notifyParent; } ///Initiailzes a new instance of the NotifyPropertyAttribute class /// that uses the specified value /// to indicate whether the parent property should be notified when a child namespace property is modified. ////// public bool NotifyParent { get { return notifyParent; } } ////// Gets or sets whether the parent property should be notified /// on changes to a child namespace property. /// ////// public override bool Equals(object obj) { if (obj == this) { return true; } if ((obj != null) && (obj is NotifyParentPropertyAttribute)) { return ((NotifyParentPropertyAttribute)obj).NotifyParent == notifyParent; } return false; } ////// Tests whether the specified object is the same as the current object. /// ////// public override int GetHashCode() { return base.GetHashCode(); } ////// Returns the hashcode for this object. /// ////// public override bool IsDefaultAttribute() { return this.Equals(Default); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets whether this attribute is ///by default. /// // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using System; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.Property)] public sealed class NotifyParentPropertyAttribute : Attribute { ////// Indicates whether the parent property is notified /// if a child namespace property is modified. /// ////// public static readonly NotifyParentPropertyAttribute Yes = new NotifyParentPropertyAttribute(true); ////// Specifies that the parent property should be notified on changes to the child class property. This field is read-only. /// ////// public static readonly NotifyParentPropertyAttribute No = new NotifyParentPropertyAttribute(false); ///Specifies that the parent property should not be notified of changes to the child class property. This field is read-only. ////// public static readonly NotifyParentPropertyAttribute Default = No; private bool notifyParent = false; ///Specifies the default attribute state, that the parent property should not be notified of changes to the child class property. /// This field is read-only. ////// public NotifyParentPropertyAttribute(bool notifyParent) { this.notifyParent = notifyParent; } ///Initiailzes a new instance of the NotifyPropertyAttribute class /// that uses the specified value /// to indicate whether the parent property should be notified when a child namespace property is modified. ////// public bool NotifyParent { get { return notifyParent; } } ////// Gets or sets whether the parent property should be notified /// on changes to a child namespace property. /// ////// public override bool Equals(object obj) { if (obj == this) { return true; } if ((obj != null) && (obj is NotifyParentPropertyAttribute)) { return ((NotifyParentPropertyAttribute)obj).NotifyParent == notifyParent; } return false; } ////// Tests whether the specified object is the same as the current object. /// ////// public override int GetHashCode() { return base.GetHashCode(); } ////// Returns the hashcode for this object. /// ////// public override bool IsDefaultAttribute() { return this.Equals(Default); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets whether this attribute is ///by default. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SafeRightsManagementSessionHandle.cs
- DataServiceCollectionOfT.cs
- ModelItemCollection.cs
- XmlSerializableWriter.cs
- NamedPipeChannelListener.cs
- RtType.cs
- WebPartTransformer.cs
- SymbolType.cs
- RtType.cs
- SymmetricKeyWrap.cs
- ErrorHandler.cs
- WrapPanel.cs
- XmlAttributeProperties.cs
- MediaTimeline.cs
- InstalledFontCollection.cs
- OleDbConnection.cs
- TableItemPattern.cs
- InvalidOleVariantTypeException.cs
- BinaryParser.cs
- HyperLinkField.cs
- XmlSerializerNamespaces.cs
- DictionaryBase.cs
- RoleServiceManager.cs
- Code.cs
- DSASignatureFormatter.cs
- XmlSerializationWriter.cs
- FormClosingEvent.cs
- DocumentOrderQuery.cs
- TextSchema.cs
- SqlMethods.cs
- SystemNetHelpers.cs
- ProviderCollection.cs
- SpeechEvent.cs
- InitializerFacet.cs
- XmlSchemaNotation.cs
- WebOperationContext.cs
- BitmapEffectDrawing.cs
- QilScopedVisitor.cs
- TypeUsageBuilder.cs
- WebBaseEventKeyComparer.cs
- FeatureManager.cs
- PackagingUtilities.cs
- SignatureToken.cs
- EntityDataSourceSelectingEventArgs.cs
- TrackingRecord.cs
- Bidi.cs
- OdbcConnectionHandle.cs
- DesignerProperties.cs
- MailMessage.cs
- InvocationExpression.cs
- TransactionState.cs
- DockEditor.cs
- SessionStateItemCollection.cs
- CompilerInfo.cs
- TemplateBindingExpressionConverter.cs
- WinInetCache.cs
- AttributeEmitter.cs
- XmlSchemaSequence.cs
- SystemInfo.cs
- OleDbEnumerator.cs
- XmlSequenceWriter.cs
- QuestionEventArgs.cs
- SafeArrayTypeMismatchException.cs
- CompensatableTransactionScopeActivity.cs
- TabControlCancelEvent.cs
- MessageSecurityVersion.cs
- WebResponse.cs
- ErrorFormatter.cs
- GeneratedCodeAttribute.cs
- SplineKeyFrames.cs
- StatusInfoItem.cs
- PasswordBox.cs
- CommonProperties.cs
- TextEvent.cs
- EditorPartDesigner.cs
- DataSourceXmlSerializer.cs
- ListBindingHelper.cs
- InnerItemCollectionView.cs
- FamilyMapCollection.cs
- SessionEndingCancelEventArgs.cs
- EtwTrace.cs
- EntityModelBuildProvider.cs
- ToolStrip.cs
- AsyncStreamReader.cs
- streamingZipPartStream.cs
- CompilerInfo.cs
- Publisher.cs
- XsdDataContractImporter.cs
- DefaultTextStore.cs
- Int32Animation.cs
- BinaryUtilClasses.cs
- Sql8ExpressionRewriter.cs
- IncrementalReadDecoders.cs
- HGlobalSafeHandle.cs
- ObjectSecurity.cs
- ToolBar.cs
- FacetValues.cs
- DbMetaDataFactory.cs
- TrackBarRenderer.cs
- SecurityProtocolFactory.cs