Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / System / Windows / Media / mediaeventargs.cs / 1 / 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. //------------------------------------------------------------------------------ // 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
- _AuthenticationState.cs
- MatrixConverter.cs
- ControlTemplate.cs
- LongCountAggregationOperator.cs
- X509CertificateClaimSet.cs
- AsymmetricKeyExchangeDeformatter.cs
- KeyGesture.cs
- Expander.cs
- TypeHelper.cs
- BulletedListDesigner.cs
- oledbconnectionstring.cs
- EntityDataSourceMemberPath.cs
- PersonalizationStateQuery.cs
- StringConcat.cs
- HtmlElementEventArgs.cs
- Light.cs
- BaseDataList.cs
- JavaScriptObjectDeserializer.cs
- DataGridDetailsPresenterAutomationPeer.cs
- ContentHostHelper.cs
- TextTreeUndo.cs
- EventDrivenDesigner.cs
- Marshal.cs
- MailHeaderInfo.cs
- UTF32Encoding.cs
- LocatorManager.cs
- GraphicsContainer.cs
- TextEditorThreadLocalStore.cs
- EventProviderWriter.cs
- ConfigurationElement.cs
- StateDesigner.TransitionInfo.cs
- HttpCookiesSection.cs
- SchemaNotation.cs
- ReadOnlyDictionary.cs
- FileChangesMonitor.cs
- DeliveryRequirementsAttribute.cs
- ListViewDataItem.cs
- EntityObject.cs
- XsltQilFactory.cs
- OdbcParameterCollection.cs
- serverconfig.cs
- Window.cs
- ModelPerspective.cs
- ServicePointManager.cs
- SerialPinChanges.cs
- StyleSelector.cs
- _NegotiateClient.cs
- StrokeRenderer.cs
- ObsoleteAttribute.cs
- coordinator.cs
- ComponentDispatcherThread.cs
- WebPartEditorOkVerb.cs
- _HelperAsyncResults.cs
- XmlSchemaComplexContentRestriction.cs
- SystemIPInterfaceStatistics.cs
- EncryptedReference.cs
- FontUnit.cs
- Blend.cs
- DirectoryGroupQuery.cs
- Menu.cs
- SharedPerformanceCounter.cs
- XmlProcessingInstruction.cs
- FixedDSBuilder.cs
- DoubleLink.cs
- Condition.cs
- XmlReaderDelegator.cs
- ResourceReferenceExpression.cs
- ConfigUtil.cs
- XmlSchemaObject.cs
- SqlCrossApplyToCrossJoin.cs
- TypeConverter.cs
- ToolStripProgressBar.cs
- ThreadStateException.cs
- IconBitmapDecoder.cs
- RequestNavigateEventArgs.cs
- Style.cs
- MatchingStyle.cs
- ObjectItemNoOpAssemblyLoader.cs
- ConnectionPointCookie.cs
- DataGridViewCellEventArgs.cs
- HybridDictionary.cs
- DataGridViewComponentPropertyGridSite.cs
- ReaderWriterLockWrapper.cs
- AsymmetricAlgorithm.cs
- MatrixTransform3D.cs
- WmpBitmapEncoder.cs
- EllipticalNodeOperations.cs
- HtmlElement.cs
- AnnotationResource.cs
- NullableDoubleSumAggregationOperator.cs
- UserInitiatedNavigationPermission.cs
- TextTreeObjectNode.cs
- OrderedEnumerableRowCollection.cs
- BasicHttpSecurity.cs
- ProcessStartInfo.cs
- Error.cs
- ILGenerator.cs
- ChineseLunisolarCalendar.cs
- DBBindings.cs
- OutgoingWebRequestContext.cs