Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / 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. //------------------------------------------------------------------------------ // 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
- TdsParserSafeHandles.cs
- FileDataSourceCache.cs
- MD5.cs
- ProfileProvider.cs
- SoapSchemaExporter.cs
- Rotation3D.cs
- SharedPerformanceCounter.cs
- ConnectionsZoneDesigner.cs
- InProcStateClientManager.cs
- PriorityQueue.cs
- SecurityPolicySection.cs
- ChangePasswordAutoFormat.cs
- CounterSample.cs
- ListMarkerLine.cs
- RemoteDebugger.cs
- CodeDefaultValueExpression.cs
- HMACRIPEMD160.cs
- SmtpCommands.cs
- _NTAuthentication.cs
- PrePostDescendentsWalker.cs
- Action.cs
- CachingHintValidation.cs
- StylusButtonEventArgs.cs
- UrlPath.cs
- ObjectListField.cs
- SendOperation.cs
- ColumnPropertiesGroup.cs
- Partitioner.cs
- OneOfConst.cs
- XXXOnTypeBuilderInstantiation.cs
- WebServiceClientProxyGenerator.cs
- JoinTreeNode.cs
- SqlMultiplexer.cs
- StringInfo.cs
- XpsS0ValidatingLoader.cs
- Compensation.cs
- AdapterDictionary.cs
- CodeIdentifier.cs
- WebPartTransformer.cs
- DebugHandleTracker.cs
- InputLanguageCollection.cs
- CultureInfoConverter.cs
- ParenExpr.cs
- UIntPtr.cs
- CompilerGeneratedAttribute.cs
- HttpHandlersSection.cs
- XmlStringTable.cs
- WizardPanel.cs
- Trace.cs
- ServiceInfo.cs
- LogoValidationException.cs
- MatchingStyle.cs
- HtmlLiteralTextAdapter.cs
- SmtpMail.cs
- Attributes.cs
- DelegateArgument.cs
- LZCodec.cs
- RSAOAEPKeyExchangeDeformatter.cs
- ForeignConstraint.cs
- Cloud.cs
- ErrorWebPart.cs
- ReadOnlyCollection.cs
- AssociatedControlConverter.cs
- CryptoApi.cs
- HtmlFormWrapper.cs
- ToolboxItemFilterAttribute.cs
- DbBuffer.cs
- OutputCacheProfileCollection.cs
- SafeFreeMibTable.cs
- SizeConverter.cs
- DummyDataSource.cs
- LinkedResourceCollection.cs
- ToolBar.cs
- HierarchicalDataSourceControl.cs
- QilGeneratorEnv.cs
- MemberAccessException.cs
- Form.cs
- SqlDependencyListener.cs
- IndexerNameAttribute.cs
- EncryptedKey.cs
- NamespaceMapping.cs
- StorageMappingItemLoader.cs
- LassoHelper.cs
- ListControl.cs
- SelectionPattern.cs
- UnsafeNativeMethods.cs
- TypeDescriptionProviderAttribute.cs
- WCFServiceClientProxyGenerator.cs
- TableRowCollection.cs
- RawTextInputReport.cs
- DataColumnPropertyDescriptor.cs
- XmlAnyElementAttribute.cs
- LinkUtilities.cs
- VSWCFServiceContractGenerator.cs
- MenuItemCollection.cs
- DataGridItem.cs
- DataControlField.cs
- TransformGroup.cs
- IpcChannel.cs
- XmlSerializerAssemblyAttribute.cs