Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / Design / NotifyParentPropertyAttribute.cs / 1305376 / 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. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WindowsListViewSubItem.cs
- Int64AnimationUsingKeyFrames.cs
- PartialCachingAttribute.cs
- PolyLineSegment.cs
- IsolatedStorageFilePermission.cs
- PersonalizationEntry.cs
- TagPrefixCollection.cs
- XmlSerializableWriter.cs
- TextPointer.cs
- ShapingEngine.cs
- Resources.Designer.cs
- SecurityElement.cs
- DataListDesigner.cs
- Socket.cs
- shaperfactoryquerycacheentry.cs
- DataGridTableCollection.cs
- WebBrowserPermission.cs
- VerificationException.cs
- Win32SafeHandles.cs
- XPathNodeList.cs
- XmlAttributeHolder.cs
- LineMetrics.cs
- WebPartMinimizeVerb.cs
- FamilyTypefaceCollection.cs
- BStrWrapper.cs
- DispatcherOperation.cs
- InputScopeConverter.cs
- BinHexDecoder.cs
- StateMachineDesignerPaint.cs
- CodeConditionStatement.cs
- CorePropertiesFilter.cs
- DataGridViewEditingControlShowingEventArgs.cs
- RegexNode.cs
- HashMembershipCondition.cs
- MethodAccessException.cs
- NegatedConstant.cs
- MenuItem.cs
- Geometry3D.cs
- PageAsyncTask.cs
- DebugHandleTracker.cs
- DataSourceCollectionBase.cs
- IIS7WorkerRequest.cs
- BitmapFrameDecode.cs
- TypeSource.cs
- DataRelation.cs
- SynchronizationLockException.cs
- ContextMenuService.cs
- PersistChildrenAttribute.cs
- ConfigurationSchemaErrors.cs
- PathFigureCollection.cs
- _Events.cs
- ToolStripDropDownMenu.cs
- Point3DCollectionConverter.cs
- CurrencyWrapper.cs
- EventLogTraceListener.cs
- InvalidEnumArgumentException.cs
- FormsAuthenticationEventArgs.cs
- UTF7Encoding.cs
- SoapRpcMethodAttribute.cs
- DeferredSelectedIndexReference.cs
- NamespaceExpr.cs
- HtmlEncodedRawTextWriter.cs
- TypedRowGenerator.cs
- EdmItemError.cs
- ElementAction.cs
- SchemaImporterExtensionsSection.cs
- NotSupportedException.cs
- RadioButtonBaseAdapter.cs
- ToolTipService.cs
- SqlProfileProvider.cs
- DrawingCollection.cs
- FrameworkTemplate.cs
- ResourcesBuildProvider.cs
- ToolStripHighContrastRenderer.cs
- XamlVector3DCollectionSerializer.cs
- ServiceRouteHandler.cs
- ParameterElement.cs
- RotateTransform3D.cs
- MultiByteCodec.cs
- WriteableBitmap.cs
- TraceUtility.cs
- DesignerToolStripControlHost.cs
- SimpleWorkerRequest.cs
- XPathPatternParser.cs
- ConstraintEnumerator.cs
- ExpressionEditorSheet.cs
- DateRangeEvent.cs
- RTLAwareMessageBox.cs
- OperationAbortedException.cs
- TagPrefixCollection.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- ButtonField.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- XamlToRtfWriter.cs
- WorkflowApplicationCompletedEventArgs.cs
- VisualStyleElement.cs
- TransactionsSectionGroup.cs
- SafeSystemMetrics.cs
- AxHost.cs
- RedistVersionInfo.cs