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
- BezierSegment.cs
- ChooseAction.cs
- HostProtectionPermission.cs
- TimersDescriptionAttribute.cs
- NumberFunctions.cs
- CharacterBuffer.cs
- NameScope.cs
- Timer.cs
- KnownColorTable.cs
- ServerValidateEventArgs.cs
- ObjectItemAssemblyLoader.cs
- ProfileModule.cs
- ControlPaint.cs
- MappingModelBuildProvider.cs
- RichListBox.cs
- CheckBoxPopupAdapter.cs
- COM2EnumConverter.cs
- FormsAuthenticationUser.cs
- HtmlInputRadioButton.cs
- TextViewBase.cs
- MediaSystem.cs
- XmlDataSourceView.cs
- SqlUdtInfo.cs
- DataRowCollection.cs
- MenuItemBinding.cs
- DataGridViewAccessibleObject.cs
- TextAdaptor.cs
- ProgressBar.cs
- EtwTrackingParticipant.cs
- WeakReadOnlyCollection.cs
- PackageProperties.cs
- RemoteX509Token.cs
- BoundColumn.cs
- TransformGroup.cs
- DataGridViewCellEventArgs.cs
- FixUpCollection.cs
- ToolbarAUtomationPeer.cs
- XmlBoundElement.cs
- LocatorGroup.cs
- BaseConfigurationRecord.cs
- ServiceEndpointAssociationProvider.cs
- SqlDataSourceCommandEventArgs.cs
- Polyline.cs
- WebPartsPersonalization.cs
- Types.cs
- UriTemplatePathPartiallyEquivalentSet.cs
- DataViewManager.cs
- LinqDataSourceContextEventArgs.cs
- StringAnimationBase.cs
- ToolboxSnapDragDropEventArgs.cs
- XmlReader.cs
- XmlSchemaComplexContent.cs
- CommentEmitter.cs
- ToolStripControlHost.cs
- WebPartManager.cs
- objectquery_tresulttype.cs
- ParserStreamGeometryContext.cs
- DataReaderContainer.cs
- StreamResourceInfo.cs
- DefaultBinder.cs
- SelfIssuedAuthRSAPKCS1SignatureFormatter.cs
- COM2ExtendedUITypeEditor.cs
- TreeIterator.cs
- Int32CollectionConverter.cs
- DataServiceKeyAttribute.cs
- DbDeleteCommandTree.cs
- StylusPointProperties.cs
- Point3D.cs
- SiteMapHierarchicalDataSourceView.cs
- HMACSHA384.cs
- SiteMapNodeCollection.cs
- FileFormatException.cs
- DeclarativeExpressionConditionDeclaration.cs
- PropertyRecord.cs
- Point3DAnimationBase.cs
- AutoCompleteStringCollection.cs
- OrderByBuilder.cs
- AutoCompleteStringCollection.cs
- X509Certificate2.cs
- CommandField.cs
- TreeNodeSelectionProcessor.cs
- Queue.cs
- ResourcePermissionBase.cs
- NetSectionGroup.cs
- PointCollectionConverter.cs
- SmiRecordBuffer.cs
- DataGridViewCellFormattingEventArgs.cs
- CodeDomExtensionMethods.cs
- Transform3DGroup.cs
- SizeValueSerializer.cs
- HwndStylusInputProvider.cs
- ClassValidator.cs
- MarkupCompilePass1.cs
- WorkflowValidationFailedException.cs
- ContractListAdapter.cs
- HelloOperationAsyncResult.cs
- Verify.cs
- PackagePartCollection.cs
- RuleSetDialog.cs
- ThumbButtonInfoCollection.cs