Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / System / ComponentModel / HandledEventArgs.cs / 1 / HandledEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using System; using System.ComponentModel; using System.Diagnostics; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] public class HandledEventArgs : EventArgs { ////// Provides data for the ////// event. /// /// Indicates, on return, whether or not the event was handled in the application's event handler. /// 'true' means the application handled the event, 'false' means it didn't. /// private bool handled; ////// public HandledEventArgs() : this(false) { } ////// Initializes a new instance of the ///class with /// handled set to . /// /// public HandledEventArgs(bool defaultHandledValue) : base() { this.handled = defaultHandledValue; } ////// Initializes a new instance of the ///class with /// handled set to the given value. /// /// public bool Handled { get { return this.handled; } set { this.handled = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets or sets a value /// indicating whether the event is handled. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using System; using System.ComponentModel; using System.Diagnostics; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] public class HandledEventArgs : EventArgs { ////// Provides data for the ////// event. /// /// Indicates, on return, whether or not the event was handled in the application's event handler. /// 'true' means the application handled the event, 'false' means it didn't. /// private bool handled; ////// public HandledEventArgs() : this(false) { } ////// Initializes a new instance of the ///class with /// handled set to . /// /// public HandledEventArgs(bool defaultHandledValue) : base() { this.handled = defaultHandledValue; } ////// Initializes a new instance of the ///class with /// handled set to the given value. /// /// public bool Handled { get { return this.handled; } set { this.handled = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets a value /// indicating whether the event is handled. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- NativeMethodsCLR.cs
- __Filters.cs
- XPathBuilder.cs
- dsa.cs
- DocumentReference.cs
- OutputWindow.cs
- HtmlProps.cs
- DataGridPreparingCellForEditEventArgs.cs
- XmlDocumentSerializer.cs
- followingquery.cs
- SqlUDTStorage.cs
- TextBreakpoint.cs
- SqlPersonalizationProvider.cs
- AttributeCollection.cs
- StreamReader.cs
- TextDpi.cs
- DelayDesigner.cs
- MimeWriter.cs
- ListViewContainer.cs
- AsyncSerializedWorker.cs
- DataBindEngine.cs
- ByteViewer.cs
- XmlTypeMapping.cs
- VirtualizingStackPanel.cs
- InputLangChangeEvent.cs
- ContentType.cs
- WpfPayload.cs
- Grid.cs
- CatalogZoneBase.cs
- __TransparentProxy.cs
- PropertyNames.cs
- VScrollProperties.cs
- RectAnimationBase.cs
- RadioButtonPopupAdapter.cs
- RecipientIdentity.cs
- IdentityHolder.cs
- ImageConverter.cs
- ClientBuildManager.cs
- TextViewBase.cs
- Line.cs
- DocumentGridPage.cs
- TrustSection.cs
- SystemKeyConverter.cs
- PauseStoryboard.cs
- MsmqPoisonMessageException.cs
- LinqDataSourceStatusEventArgs.cs
- DataGridTextBox.cs
- ControlCachePolicy.cs
- Route.cs
- XmlReflectionMember.cs
- ExpandableObjectConverter.cs
- BorderSidesEditor.cs
- LicenseException.cs
- ProfileProvider.cs
- XmlWriterSettings.cs
- DataGridViewImageCell.cs
- ProtocolInformationWriter.cs
- DeploymentExceptionMapper.cs
- PerformanceCountersElement.cs
- TaiwanLunisolarCalendar.cs
- ConfigurationException.cs
- AlgoModule.cs
- BindingExpressionBase.cs
- TextTreeTextNode.cs
- _AutoWebProxyScriptEngine.cs
- Int32RectValueSerializer.cs
- ViewBase.cs
- DesignerAutoFormatCollection.cs
- Permission.cs
- Geometry3D.cs
- OutputCacheProfileCollection.cs
- DataSourceHelper.cs
- WebPartZoneBase.cs
- ValuePattern.cs
- DbConnectionPoolGroup.cs
- ToolStripSeparator.cs
- XmlSchemaAll.cs
- QuadraticEase.cs
- CompositeFontInfo.cs
- FontNamesConverter.cs
- RectConverter.cs
- CalendarTable.cs
- Msec.cs
- SuppressIldasmAttribute.cs
- StateItem.cs
- PeerCustomResolverBindingElement.cs
- RadioButtonAutomationPeer.cs
- WebServiceMethodData.cs
- GridViewSortEventArgs.cs
- ParserContext.cs
- PathSegmentCollection.cs
- GetParentChain.cs
- DataGridColumnReorderingEventArgs.cs
- EditorZone.cs
- SchemaImporter.cs
- ContextInformation.cs
- ValidationSummary.cs
- ListViewAutomationPeer.cs
- LongValidatorAttribute.cs
- XamlGridLengthSerializer.cs