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 / 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
- OleDbConnectionPoolGroupProviderInfo.cs
- EntityCommandCompilationException.cs
- Hash.cs
- NameValueFileSectionHandler.cs
- columnmapkeybuilder.cs
- DebugView.cs
- brushes.cs
- Types.cs
- WorkflowDefinitionContext.cs
- SqlXml.cs
- InvalidateEvent.cs
- COM2ComponentEditor.cs
- FullTextLine.cs
- MonthCalendar.cs
- ObjectDataSourceWizardForm.cs
- BitFlagsGenerator.cs
- SemaphoreSecurity.cs
- TableRowGroup.cs
- XmlWriterSettings.cs
- ConfigurationManagerHelper.cs
- StringWriter.cs
- Rect3DConverter.cs
- StringToken.cs
- SemanticTag.cs
- ExpressionParser.cs
- SecurityTokenAttachmentMode.cs
- ApplicationFileCodeDomTreeGenerator.cs
- SingleSelectRootGridEntry.cs
- InputProviderSite.cs
- WebPartCatalogCloseVerb.cs
- BackStopAuthenticationModule.cs
- BinaryUtilClasses.cs
- DetailsViewRowCollection.cs
- FlowNode.cs
- HashLookup.cs
- EncodingNLS.cs
- ToolboxItemFilterAttribute.cs
- SHA384.cs
- FormatConvertedBitmap.cs
- UIElement3D.cs
- WebRequestModuleElementCollection.cs
- ToolStripContainerDesigner.cs
- EllipseGeometry.cs
- GroupLabel.cs
- CheckoutException.cs
- SqlDataSourceCache.cs
- BorderGapMaskConverter.cs
- DataControlLinkButton.cs
- ManagedWndProcTracker.cs
- GacUtil.cs
- CharStorage.cs
- CurrentChangingEventArgs.cs
- SystemColors.cs
- ClientProxyGenerator.cs
- InitializeCorrelation.cs
- JobDuplex.cs
- IndentTextWriter.cs
- RegistryPermission.cs
- LocationChangedEventArgs.cs
- ImageMetadata.cs
- Baml2006ReaderFrame.cs
- CookielessHelper.cs
- XPathExpr.cs
- OrElse.cs
- FontStretches.cs
- MouseEvent.cs
- ExtendedPropertyInfo.cs
- OleDbReferenceCollection.cs
- HttpPostedFile.cs
- Stacktrace.cs
- ObjectPersistData.cs
- FontWeight.cs
- IisTraceListener.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- HwndTarget.cs
- EmptyStringExpandableObjectConverter.cs
- WindowCollection.cs
- ExternalCalls.cs
- MouseWheelEventArgs.cs
- ExtentCqlBlock.cs
- FontFamilyValueSerializer.cs
- ThreadNeutralSemaphore.cs
- Options.cs
- UpdateProgress.cs
- XmlBinaryReader.cs
- METAHEADER.cs
- SqlDataSourceFilteringEventArgs.cs
- EntityDataSourceWrapper.cs
- PropertyPushdownHelper.cs
- ImageCodecInfo.cs
- ListItemCollection.cs
- XsdDateTime.cs
- PopupEventArgs.cs
- JsonMessageEncoderFactory.cs
- MobileResource.cs
- ToolStripProgressBar.cs
- AttributedMetaModel.cs
- NativeMethods.cs
- IdentityManager.cs
- DataGridColumn.cs