Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / Controls / ExceptionRoutedEventArgs.cs / 1 / ExceptionRoutedEventArgs.cs
//------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, 2003 // // File: ExceptionRoutedEventArgs.cs // //----------------------------------------------------------------------------- using System; namespace System.Windows { #region ExceptionRoutedEventArgs ////// Holds the error event arguments for media failed events from a MediaElement. /// Since other MediaFailed events from the MediaClock or MediaTimeline are not /// routed events, this is separated out into a different class. /// public sealed class ExceptionRoutedEventArgs : RoutedEventArgs { internal ExceptionRoutedEventArgs( RoutedEvent routedEvent, object sender, Exception errorException ) : base(routedEvent, sender) { if (errorException == null) { throw new ArgumentNullException("errorException"); } _errorException = errorException; } ////// The exception that describes the media failure. /// public Exception ErrorException { get { return _errorException; } } private Exception _errorException; }; #endregion } // namespace System.Windows // 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
- MdiWindowListItemConverter.cs
- FontDriver.cs
- ProcessHost.cs
- ScriptManagerProxy.cs
- ITextView.cs
- PeerApplication.cs
- ChtmlTextWriter.cs
- AnimatedTypeHelpers.cs
- CodeMemberField.cs
- RegexReplacement.cs
- SelectionListComponentEditor.cs
- QuadraticBezierSegment.cs
- DBCommandBuilder.cs
- PasswordDeriveBytes.cs
- TraceXPathNavigator.cs
- SQLGuidStorage.cs
- ProcessModule.cs
- StringComparer.cs
- TextModifierScope.cs
- CodeArrayIndexerExpression.cs
- Restrictions.cs
- ProcessThreadCollection.cs
- Encoding.cs
- ManagedFilter.cs
- EmbeddedMailObjectsCollection.cs
- CircleHotSpot.cs
- IteratorFilter.cs
- NativeDirectoryServicesQueryAPIs.cs
- ValidatingCollection.cs
- Control.cs
- StringExpressionSet.cs
- QilTargetType.cs
- NameScopePropertyAttribute.cs
- linebase.cs
- ToolBarDesigner.cs
- AmbientLight.cs
- DefaultClaimSet.cs
- SqlParameterCollection.cs
- FileRegion.cs
- TemplateControlParser.cs
- CallbackHandler.cs
- propertyentry.cs
- ImageCodecInfoPrivate.cs
- TrackBar.cs
- PageHandlerFactory.cs
- AnnotationComponentManager.cs
- SequentialUshortCollection.cs
- OutOfMemoryException.cs
- DataStreamFromComStream.cs
- AddingNewEventArgs.cs
- CryptoStream.cs
- Menu.cs
- ReadOnlyMetadataCollection.cs
- StringConcat.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- InstanceDataCollectionCollection.cs
- DbConnectionStringCommon.cs
- MimeWriter.cs
- PropertyItem.cs
- WebControl.cs
- Drawing.cs
- SqlWebEventProvider.cs
- PageThemeCodeDomTreeGenerator.cs
- DbConnectionPoolIdentity.cs
- DataObjectSettingDataEventArgs.cs
- SRGSCompiler.cs
- PositiveTimeSpanValidator.cs
- IQueryable.cs
- IdentitySection.cs
- FilteredAttributeCollection.cs
- ToolboxItemFilterAttribute.cs
- PropertyGridEditorPart.cs
- ThaiBuddhistCalendar.cs
- RadioButtonAutomationPeer.cs
- ToolStripContentPanelRenderEventArgs.cs
- IntSumAggregationOperator.cs
- WSSecureConversationFeb2005.cs
- RootAction.cs
- BaseUriHelper.cs
- TableDetailsRow.cs
- PolicyManager.cs
- ClassHandlersStore.cs
- XamlReaderHelper.cs
- GridViewUpdateEventArgs.cs
- CommandLibraryHelper.cs
- PlacementWorkspace.cs
- EDesignUtil.cs
- EnumBuilder.cs
- RegistrySecurity.cs
- DataGridViewCellParsingEventArgs.cs
- DbConnectionStringCommon.cs
- RsaSecurityTokenAuthenticator.cs
- Math.cs
- DocumentOrderComparer.cs
- DbConnectionPoolGroupProviderInfo.cs
- InputQueueChannel.cs
- uribuilder.cs
- XmlSerializationWriter.cs
- TimeIntervalCollection.cs
- EarlyBoundInfo.cs