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
- FormatControl.cs
- SessionStateSection.cs
- AppDomain.cs
- TableLayout.cs
- ValidationHelper.cs
- ICspAsymmetricAlgorithm.cs
- BitmapEffectRenderDataResource.cs
- DiscreteKeyFrames.cs
- ValidationErrorEventArgs.cs
- XmlQualifiedNameTest.cs
- messageonlyhwndwrapper.cs
- AutoResetEvent.cs
- RowUpdatedEventArgs.cs
- Metadata.cs
- ResourceExpression.cs
- RuntimeWrappedException.cs
- AsyncDataRequest.cs
- SimpleColumnProvider.cs
- WizardSideBarListControlItem.cs
- ColorPalette.cs
- SoapAttributeOverrides.cs
- ChtmlSelectionListAdapter.cs
- DiscoveryExceptionDictionary.cs
- BufferModesCollection.cs
- DynamicValueConverter.cs
- Hashtable.cs
- WSFederationHttpSecurityMode.cs
- DataGridViewRowCancelEventArgs.cs
- SBCSCodePageEncoding.cs
- ClientConvert.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- CompilerScope.Storage.cs
- HtmlInputHidden.cs
- safelink.cs
- DrawingGroupDrawingContext.cs
- FontDialog.cs
- VSWCFServiceContractGenerator.cs
- SoapElementAttribute.cs
- DiscoveryRequestHandler.cs
- OperationSelectorBehavior.cs
- SatelliteContractVersionAttribute.cs
- SiteMapNode.cs
- HostAdapter.cs
- InstanceDataCollectionCollection.cs
- GestureRecognizer.cs
- ConnectionsZone.cs
- ClientData.cs
- ListViewPagedDataSource.cs
- TargetParameterCountException.cs
- HGlobalSafeHandle.cs
- CodeBlockBuilder.cs
- _SpnDictionary.cs
- TextPenaltyModule.cs
- CodeAttributeArgumentCollection.cs
- SortAction.cs
- AudioLevelUpdatedEventArgs.cs
- UTF7Encoding.cs
- CodeTypeMember.cs
- Camera.cs
- PartialCachingAttribute.cs
- DefaultValueConverter.cs
- XPathItem.cs
- CodeDirectoryCompiler.cs
- DirectionalLight.cs
- TextParagraphCache.cs
- Missing.cs
- TemplateAction.cs
- HttpRuntime.cs
- FormsIdentity.cs
- ToolStripMenuItem.cs
- AdornedElementPlaceholder.cs
- MultiTargetingUtil.cs
- ServiceTimeoutsBehavior.cs
- XmlIncludeAttribute.cs
- ProcessExitedException.cs
- GetWinFXPath.cs
- InstanceLockedException.cs
- RequiredAttributeAttribute.cs
- VirtualPathUtility.cs
- ApplicationManager.cs
- FixedTextPointer.cs
- SortableBindingList.cs
- BamlResourceContent.cs
- GZipStream.cs
- XPathScanner.cs
- TextBox.cs
- NodeFunctions.cs
- ForAllOperator.cs
- Attachment.cs
- XmlName.cs
- RadioButtonFlatAdapter.cs
- KnownTypes.cs
- Convert.cs
- GrammarBuilderRuleRef.cs
- CombinedGeometry.cs
- DesignerTransactionCloseEvent.cs
- RoutedEvent.cs
- ReflectPropertyDescriptor.cs
- AddInSegmentDirectoryNotFoundException.cs
- DesignerLinkAdapter.cs