Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / mediaeventargs.cs / 1305600 / mediaeventargs.cs
//------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, 2003 // // File: mediaeventargs.cs // //----------------------------------------------------------------------------- using System; namespace System.Windows.Media { #region ExceptionEventArgs ////// arguments for media failure event handlers /// public sealed class ExceptionEventArgs : EventArgs { ////// Creates a new ExceptionEventArgs. /// /// Error Exception. internal ExceptionEventArgs(Exception errorException) : base() { if (errorException == null) { throw new ArgumentNullException("errorException"); } _errorException = errorException; } ////// Error Exception /// public Exception ErrorException { get { return _errorException; } } ////// Error exception data /// private Exception _errorException; }; #endregion #region MediaScriptCommandEventArgs ////// Arguments for any scripting commands associated with the media. /// public sealed class MediaScriptCommandEventArgs : EventArgs { ////// Creates a new MediaScriptCommandEventArgs. /// internal MediaScriptCommandEventArgs( string parameterType, string parameterValue ) : base() { if (parameterType == null) { throw new ArgumentNullException("parameterType"); } if (parameterValue == null) { throw new ArgumentNullException("parameterValue"); } _parameterType = parameterType; _parameterValue = parameterValue; } ////// The type of the script command. /// public String ParameterType { get { return _parameterType; } } ////// The parameter associated with the script command. /// public String ParameterValue { get { return _parameterValue; } } ////// The type of scripting command /// private string _parameterType; ////// The parameter associated with the script command. /// private string _parameterValue; } #endregion }; // 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
- MemoryPressure.cs
- ListChangedEventArgs.cs
- DataSourceHelper.cs
- relpropertyhelper.cs
- SimpleMailWebEventProvider.cs
- TableLayout.cs
- XamlGridLengthSerializer.cs
- ColorPalette.cs
- QueryExecutionOption.cs
- CapacityStreamGeometryContext.cs
- externdll.cs
- CodeCommentStatementCollection.cs
- QuotedStringFormatReader.cs
- Assembly.cs
- BindingElementCollection.cs
- PaperSource.cs
- CombinedGeometry.cs
- CorrelationManager.cs
- NavigationProperty.cs
- PTManager.cs
- FileChangesMonitor.cs
- OleDbMetaDataFactory.cs
- TypefaceMetricsCache.cs
- ViewManager.cs
- QilPatternVisitor.cs
- ObjectItemLoadingSessionData.cs
- EventProvider.cs
- SqlReferenceCollection.cs
- TaskbarItemInfo.cs
- UInt32Storage.cs
- ResizeGrip.cs
- FactoryRecord.cs
- XmlQueryCardinality.cs
- DoubleIndependentAnimationStorage.cs
- TextPattern.cs
- ImpersonateTokenRef.cs
- LinkTarget.cs
- PocoPropertyAccessorStrategy.cs
- StringWriter.cs
- PropertyManager.cs
- MessagePartDescription.cs
- OptimalBreakSession.cs
- IconConverter.cs
- EmptyEnumerator.cs
- assemblycache.cs
- ControlPersister.cs
- ConversionValidationRule.cs
- HasCopySemanticsAttribute.cs
- WebResourceAttribute.cs
- XmlSerializableServices.cs
- mediaeventargs.cs
- WebPartDisplayModeEventArgs.cs
- EmptyCollection.cs
- ExpressionParser.cs
- PrimitiveXmlSerializers.cs
- CqlErrorHelper.cs
- SkipStoryboardToFill.cs
- StringBlob.cs
- MessageQueuePermissionEntry.cs
- ArgumentNullException.cs
- ScriptResourceInfo.cs
- SiteMapDataSource.cs
- CustomAttributeBuilder.cs
- XmlSchemaType.cs
- GridProviderWrapper.cs
- ConfigurationException.cs
- ResourcePool.cs
- MissingFieldException.cs
- ApplicationActivator.cs
- SiteMapProvider.cs
- PackagingUtilities.cs
- XamlTypeMapper.cs
- ZipPackagePart.cs
- DiscreteKeyFrames.cs
- ImageDrawing.cs
- CodeComment.cs
- XamlPointCollectionSerializer.cs
- ValidationError.cs
- CollectionEditor.cs
- FileIOPermission.cs
- TableLayoutPanelCellPosition.cs
- TaiwanLunisolarCalendar.cs
- FormViewPageEventArgs.cs
- CircleHotSpot.cs
- ReachIDocumentPaginatorSerializerAsync.cs
- HMACSHA384.cs
- JoinTreeNode.cs
- TextDecorationCollection.cs
- Helpers.cs
- DBPropSet.cs
- DateTimeParse.cs
- RealProxy.cs
- XPathSelectionIterator.cs
- GenericXmlSecurityToken.cs
- WindowsFormsDesignerOptionService.cs
- DocumentApplicationJournalEntry.cs
- XmlEntityReference.cs
- xmlglyphRunInfo.cs
- TypeForwardedToAttribute.cs
- WizardSideBarListControlItem.cs