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
- RegexTypeEditor.cs
- ClientConfigPaths.cs
- SiteOfOriginPart.cs
- SQLChars.cs
- BasicBrowserDialog.cs
- MergePropertyDescriptor.cs
- RightsManagementPermission.cs
- DirtyTextRange.cs
- ReaderWriterLockWrapper.cs
- FontSource.cs
- CopyAttributesAction.cs
- BindingWorker.cs
- TdsValueSetter.cs
- WindowsFormsLinkLabel.cs
- HwndSubclass.cs
- CacheMemory.cs
- FocusTracker.cs
- IndentTextWriter.cs
- QueueTransferProtocol.cs
- OdbcErrorCollection.cs
- UpDownBase.cs
- EventSetter.cs
- Mutex.cs
- BuildResult.cs
- TypeNameHelper.cs
- DataSetSchema.cs
- DataGridViewCell.cs
- ConsumerConnectionPoint.cs
- OAVariantLib.cs
- WebPartEventArgs.cs
- Thumb.cs
- BitmapEffectState.cs
- XmlSchemaIdentityConstraint.cs
- CheckBoxPopupAdapter.cs
- Vector3D.cs
- SHA1.cs
- MsmqInputMessage.cs
- XmlBoundElement.cs
- DynamicValidator.cs
- SoapExtensionTypeElement.cs
- FrugalMap.cs
- DmlSqlGenerator.cs
- ExpressionList.cs
- MachinePropertyVariants.cs
- InputLanguage.cs
- Timer.cs
- DataSourceHelper.cs
- ApplicationProxyInternal.cs
- StylusSystemGestureEventArgs.cs
- KeyValuePair.cs
- ViewManager.cs
- SoapParser.cs
- DataTableNewRowEvent.cs
- FileRecordSequenceHelper.cs
- RegistryPermission.cs
- TextServicesHost.cs
- Collection.cs
- MouseGestureConverter.cs
- webeventbuffer.cs
- httpapplicationstate.cs
- CatalogZoneBase.cs
- DataGridColumn.cs
- GradientStopCollection.cs
- WizardPanelChangingEventArgs.cs
- DataGridViewRowConverter.cs
- HashJoinQueryOperatorEnumerator.cs
- ClientTargetSection.cs
- EnumBuilder.cs
- CornerRadius.cs
- AccessViolationException.cs
- WmiEventSink.cs
- KernelTypeValidation.cs
- ToolTip.cs
- RenderDataDrawingContext.cs
- ZoneIdentityPermission.cs
- TaskResultSetter.cs
- ObjectStateFormatter.cs
- Graph.cs
- XmlDictionaryString.cs
- PrintPageEvent.cs
- CompiledRegexRunner.cs
- BinaryWriter.cs
- DocumentSignatureManager.cs
- ToolStripItemClickedEventArgs.cs
- PeerContact.cs
- XmlDomTextWriter.cs
- AppLevelCompilationSectionCache.cs
- TrustLevelCollection.cs
- CompilationLock.cs
- SiteMapSection.cs
- NativeMethods.cs
- NumberSubstitution.cs
- PrimarySelectionAdorner.cs
- NextPreviousPagerField.cs
- TdsParserHelperClasses.cs
- LocationSectionRecord.cs
- Script.cs
- HelpKeywordAttribute.cs
- ReachBasicContext.cs
- GeometryModel3D.cs