Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Runtime / ExceptionServices / ExceptionNotification.cs / 1305376 / ExceptionNotification.cs
#if FEATURE_EXCEPTION_NOTIFICATIONS // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** File: ExceptionNotification.cs ** ** ** Purpose: Contains definitions for supporting Exception Notifications. ** ** Created: 10/07/2008 ** **[....] ** =============================================================================*/ namespace System.Runtime.ExceptionServices { using System; using System.Runtime.ConstrainedExecution; // Definition of the argument-type passed to the FirstChanceException event handler public class FirstChanceExceptionEventArgs : EventArgs { // Constructor public FirstChanceExceptionEventArgs(Exception exception) { m_Exception = exception; } // Returns the exception object pertaining to the first chance exception public Exception Exception { [ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] get { return m_Exception; } } // Represents the FirstChance exception instance private Exception m_Exception; } } #endif // FEATURE_EXCEPTION_NOTIFICATIONS // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ItemContainerGenerator.cs
- TagPrefixInfo.cs
- SynchronizationFilter.cs
- COAUTHINFO.cs
- D3DImage.cs
- RequestCacheValidator.cs
- ComponentResourceKeyConverter.cs
- SortQueryOperator.cs
- ELinqQueryState.cs
- ISFTagAndGuidCache.cs
- MenuItem.cs
- EnumUnknown.cs
- HandlerBase.cs
- RectAnimationBase.cs
- Stopwatch.cs
- DbMetaDataColumnNames.cs
- TranslateTransform3D.cs
- ProfileSettingsCollection.cs
- Mutex.cs
- ValidateNames.cs
- DecimalStorage.cs
- TextPointerBase.cs
- WebBrowserNavigatedEventHandler.cs
- SwitchAttribute.cs
- DependencyObject.cs
- SchemaLookupTable.cs
- StyleSheet.cs
- _BufferOffsetSize.cs
- Thread.cs
- MachineKeySection.cs
- ManagementInstaller.cs
- WCFServiceClientProxyGenerator.cs
- _Events.cs
- SmiContext.cs
- DiscoveryReference.cs
- TargetException.cs
- safex509handles.cs
- XmlValidatingReader.cs
- GenerateTemporaryAssemblyTask.cs
- Scanner.cs
- ExpressionVisitor.cs
- WinHttpWebProxyFinder.cs
- FrameworkTextComposition.cs
- Timer.cs
- ConfigXmlDocument.cs
- TextBoxDesigner.cs
- EventLogTraceListener.cs
- Section.cs
- Token.cs
- GridToolTip.cs
- translator.cs
- SecurityHelper.cs
- CallSite.cs
- BaseCollection.cs
- DBPropSet.cs
- SystemUdpStatistics.cs
- CharUnicodeInfo.cs
- RegexCompiler.cs
- ControlBuilder.cs
- ReverseInheritProperty.cs
- ReceiveCompletedEventArgs.cs
- NestedContainer.cs
- newinstructionaction.cs
- CharacterShapingProperties.cs
- DBSqlParserColumnCollection.cs
- Path.cs
- ValueTypeFixupInfo.cs
- TextEditorContextMenu.cs
- CachedBitmap.cs
- WSTrustFeb2005.cs
- XPathMessageFilterTable.cs
- precedingquery.cs
- UserValidatedEventArgs.cs
- MarkupObject.cs
- BooleanKeyFrameCollection.cs
- HitTestParameters.cs
- HistoryEventArgs.cs
- SmiEventSink_Default.cs
- XmlQueryRuntime.cs
- ListItemCollection.cs
- LOSFormatter.cs
- FormViewCommandEventArgs.cs
- BevelBitmapEffect.cs
- EncryptedPackage.cs
- httpstaticobjectscollection.cs
- ArrayTypeMismatchException.cs
- XmlSchemas.cs
- ClientSettings.cs
- AliasedSlot.cs
- DeleteStoreRequest.cs
- TypeToken.cs
- DbConnectionPoolOptions.cs
- SkewTransform.cs
- XamlPoint3DCollectionSerializer.cs
- WebPartCloseVerb.cs
- EventManager.cs
- ToolStripProgressBar.cs
- LineUtil.cs
- Convert.cs
- DrawingAttributesDefaultValueFactory.cs