Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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; } } } }/// 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
- DivideByZeroException.cs
- Script.cs
- DelegateSerializationHolder.cs
- ClientSponsor.cs
- RewritingSimplifier.cs
- HttpCapabilitiesSectionHandler.cs
- TypeGeneratedEventArgs.cs
- Directory.cs
- sqlstateclientmanager.cs
- WmlControlAdapter.cs
- HttpHandlerAction.cs
- HttpRequestWrapper.cs
- XpsSerializationManagerAsync.cs
- NativeMethods.cs
- UnmanagedHandle.cs
- MD5Cng.cs
- OleDbConnectionInternal.cs
- ListBoxAutomationPeer.cs
- GeneralTransform3DGroup.cs
- EdmSchemaError.cs
- WinFormsSecurity.cs
- ContractDescription.cs
- TypeResolvingOptionsAttribute.cs
- xsdvalidator.cs
- EditingContext.cs
- LingerOption.cs
- AliasedSlot.cs
- RegexCapture.cs
- OpenTypeCommon.cs
- XMLSyntaxException.cs
- X509UI.cs
- ReferenceAssemblyAttribute.cs
- CheckBoxRenderer.cs
- Bits.cs
- KerberosTicketHashIdentifierClause.cs
- Expr.cs
- MultipleCopiesCollection.cs
- IssuedTokenClientBehaviorsElement.cs
- HttpModuleActionCollection.cs
- EdmItemCollection.OcAssemblyCache.cs
- RewritingPass.cs
- TextEditorTyping.cs
- SelectionRangeConverter.cs
- IncrementalCompileAnalyzer.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- _NetworkingPerfCounters.cs
- HostProtectionException.cs
- PageThemeCodeDomTreeGenerator.cs
- DataGridViewCellValidatingEventArgs.cs
- DataControlFieldCell.cs
- ExecutionContext.cs
- FieldToken.cs
- PropertyGroupDescription.cs
- InfoCardRSAPKCS1SignatureFormatter.cs
- ForceCopyBuildProvider.cs
- AssemblyFilter.cs
- RichTextBoxConstants.cs
- DataColumn.cs
- DataGridViewDataConnection.cs
- LassoSelectionBehavior.cs
- UTF8Encoding.cs
- OutputCacheSettingsSection.cs
- JobCollate.cs
- ControlTemplate.cs
- BitmapDownload.cs
- SqlConnectionFactory.cs
- InteropAutomationProvider.cs
- DataPagerFieldCommandEventArgs.cs
- SafeFileHandle.cs
- X509IssuerSerialKeyIdentifierClause.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- IChannel.cs
- FormsAuthenticationTicket.cs
- BooleanAnimationBase.cs
- KeyProperty.cs
- TrustManagerPromptUI.cs
- ExtensionSurface.cs
- FusionWrap.cs
- KeyGestureConverter.cs
- Invariant.cs
- XmlKeywords.cs
- ZipIOCentralDirectoryFileHeader.cs
- CodeAttachEventStatement.cs
- Transform3DGroup.cs
- HttpPostProtocolImporter.cs
- Error.cs
- columnmapfactory.cs
- _DisconnectOverlappedAsyncResult.cs
- EventManager.cs
- ProfessionalColorTable.cs
- DynamicHyperLink.cs
- NumberEdit.cs
- RegexCapture.cs
- XamlStream.cs
- XmlUtilWriter.cs
- UpdatePanelControlTrigger.cs
- EventLogPermissionAttribute.cs
- ObjectStateManagerMetadata.cs
- EntityUtil.cs
- XmlArrayAttribute.cs