Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / 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
- OleDbConnectionPoolGroupProviderInfo.cs
- IfAction.cs
- StatusStrip.cs
- IsolatedStoragePermission.cs
- fixedPageContentExtractor.cs
- InnerItemCollectionView.cs
- SwitchLevelAttribute.cs
- RectangleF.cs
- WsatConfiguration.cs
- StreamWriter.cs
- SchemaNotation.cs
- EditBehavior.cs
- FontFaceLayoutInfo.cs
- DataGridViewImageColumn.cs
- IPGlobalProperties.cs
- CapabilitiesAssignment.cs
- MatrixAnimationBase.cs
- LocalBuilder.cs
- RuleSettingsCollection.cs
- WebMethodAttribute.cs
- TypeBuilder.cs
- SafeWaitHandle.cs
- Application.cs
- ActivationServices.cs
- CodeDirectiveCollection.cs
- DrawToolTipEventArgs.cs
- SspiNegotiationTokenAuthenticator.cs
- ViewManager.cs
- GridViewCancelEditEventArgs.cs
- DataGridTemplateColumn.cs
- ObjectDataSourceMethodEditor.cs
- GroupBox.cs
- Win32.cs
- TextTreeFixupNode.cs
- Transform.cs
- userdatakeys.cs
- IdentityManager.cs
- SelectionRangeConverter.cs
- ElementMarkupObject.cs
- ExpressionConverter.cs
- Transform.cs
- WebEventCodes.cs
- EmptyCollection.cs
- odbcmetadatafactory.cs
- WriteFileContext.cs
- PackageProperties.cs
- ContentFileHelper.cs
- Renderer.cs
- ConstraintManager.cs
- ContainsRowNumberChecker.cs
- TimeZone.cs
- DefaultPrintController.cs
- InteropBitmapSource.cs
- HyperLinkColumn.cs
- TemplatedMailWebEventProvider.cs
- DurationConverter.cs
- HttpDictionary.cs
- SmtpFailedRecipientsException.cs
- ObjectStateFormatter.cs
- DependencyPropertyKind.cs
- PropertyEmitterBase.cs
- SortDescription.cs
- GacUtil.cs
- XmlTypeMapping.cs
- Vertex.cs
- EnumerableRowCollection.cs
- ListItemParagraph.cs
- PartitionResolver.cs
- SQLInt64Storage.cs
- BinaryObjectWriter.cs
- EasingQuaternionKeyFrame.cs
- UserMapPath.cs
- EarlyBoundInfo.cs
- Constraint.cs
- FamilyMapCollection.cs
- Adorner.cs
- Process.cs
- MetafileEditor.cs
- NotifyIcon.cs
- ToolBarDesigner.cs
- WebPartTransformerAttribute.cs
- SoapReflector.cs
- ListenerTraceUtility.cs
- XmlRootAttribute.cs
- SecurityContext.cs
- Point.cs
- RegexBoyerMoore.cs
- MetadataSerializer.cs
- GlobalItem.cs
- RequiredFieldValidator.cs
- XPathDocumentNavigator.cs
- InputScopeConverter.cs
- QilParameter.cs
- EntitySqlException.cs
- SecurityDescriptor.cs
- UpdateCommandGenerator.cs
- InvalidDataException.cs
- Splitter.cs
- XmlAttribute.cs
- HighlightVisual.cs