Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / UnhandledExceptionEventArgs.cs / 1305376 / UnhandledExceptionEventArgs.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== namespace System { using System; using System.Runtime.ConstrainedExecution; [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public class UnhandledExceptionEventArgs : EventArgs { private Object _Exception; private bool _IsTerminating; public UnhandledExceptionEventArgs(Object exception, bool isTerminating) { _Exception = exception; _IsTerminating = isTerminating; } public Object ExceptionObject { [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] get { return _Exception; } } public bool IsTerminating { [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] get { return _IsTerminating; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AsyncCompletedEventArgs.cs
- XmlChildNodes.cs
- SamlAuthorityBinding.cs
- RotateTransform.cs
- HttpHeaderCollection.cs
- UInt16Converter.cs
- XmlChoiceIdentifierAttribute.cs
- ButtonFieldBase.cs
- HttpHandlersSection.cs
- PropertyToken.cs
- Int32CAMarshaler.cs
- ComponentGlyph.cs
- UserPreferenceChangedEventArgs.cs
- LineSegment.cs
- PenThreadPool.cs
- SqlDataSourceWizardForm.cs
- SafeCoTaskMem.cs
- remotingproxy.cs
- InternalBufferOverflowException.cs
- PreProcessor.cs
- Line.cs
- WindowsPen.cs
- diagnosticsswitches.cs
- ClientFormsIdentity.cs
- ConnectionStringSettings.cs
- ModuleConfigurationInfo.cs
- ColumnBinding.cs
- SqlCommand.cs
- UnhandledExceptionEventArgs.cs
- SchemaCollectionCompiler.cs
- UriSection.cs
- WorkflowValidationFailedException.cs
- RouteItem.cs
- BaseAddressPrefixFilterElement.cs
- EncryptedType.cs
- VisualBasic.cs
- SafeNativeMethods.cs
- GenericPrincipal.cs
- ConsoleCancelEventArgs.cs
- SID.cs
- NetCodeGroup.cs
- SchemaMapping.cs
- SerialPort.cs
- PersianCalendar.cs
- ViewStateException.cs
- NetSectionGroup.cs
- WindowsToolbarAsMenu.cs
- GregorianCalendar.cs
- EventHandlersStore.cs
- FilterQuery.cs
- ScrollData.cs
- DataGridViewRowEventArgs.cs
- Compiler.cs
- ScopelessEnumAttribute.cs
- DesignerMetadata.cs
- UIElement.cs
- RegexEditorDialog.cs
- PerformanceCounterCategory.cs
- UriWriter.cs
- _HelperAsyncResults.cs
- FilteredDataSetHelper.cs
- LogRestartAreaEnumerator.cs
- CompressEmulationStream.cs
- PropertyValueChangedEvent.cs
- LineServicesCallbacks.cs
- InlineCollection.cs
- SafeBitVector32.cs
- SystemDropShadowChrome.cs
- RotateTransform3D.cs
- _NetRes.cs
- StateElementCollection.cs
- RoleManagerEventArgs.cs
- EntityModelSchemaGenerator.cs
- ChildrenQuery.cs
- SqlDesignerDataSourceView.cs
- _Win32.cs
- DnsPermission.cs
- ConfigXmlText.cs
- StreamHelper.cs
- DataBindingList.cs
- SqlReorderer.cs
- SiteIdentityPermission.cs
- MethodRental.cs
- MyContact.cs
- FixedSOMPageElement.cs
- WebControl.cs
- connectionpool.cs
- CompositeFontFamily.cs
- ProgressBar.cs
- TcpActivation.cs
- PanelDesigner.cs
- XmlNotation.cs
- AccessViolationException.cs
- CompoundFileIOPermission.cs
- PolygonHotSpot.cs
- SrgsElementList.cs
- URLAttribute.cs
- ValidatedControlConverter.cs
- ApplicationInterop.cs
- ProtocolsConfigurationHandler.cs