MediaScriptCommandRoutedEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Controls / MediaScriptCommandRoutedEventArgs.cs / 1305600 / MediaScriptCommandRoutedEventArgs.cs

                            //------------------------------------------------------------------------------ 
//  Microsoft Avalon
//  Copyright (c) Microsoft Corporation, 2003
//
//  File:       MediaScriptCommandRoutedEventArgs.cs 
//
//----------------------------------------------------------------------------- 
using System; 

namespace System.Windows 
{
    #region MediaScriptCommandRoutedEventArgs

    ///  
    ///
    ///  
    public sealed class MediaScriptCommandRoutedEventArgs : RoutedEventArgs 
    {
        internal 
        MediaScriptCommandRoutedEventArgs(
            RoutedEvent     routedEvent,
            object          sender,
            string          parameterType, 
            string          parameterValue
            )  : base(routedEvent, sender) 
        { 
            if (parameterType == null)
            { 
                throw new ArgumentNullException("parameterType");
            }

            if (parameterValue == null) 
            {
                throw new ArgumentNullException("parameterValue"); 
            } 

            _parameterType = parameterType; 
            _parameterValue = parameterValue;
        }

        ///  
        /// The type of the script command embedded in the media.
        ///  
        public string ParameterType 
        {
            get 
            {
                return _parameterType;
            }
        } 

        ///  
        /// The paramter of the script command embedded in the media. 
        /// 
        public string ParameterValue 
        {
            get
            {
                return _parameterValue; 
            }
        } 
 
        private string _parameterType;
        private string _parameterValue; 
    }

    #endregion
 
} // namespace System.Windows
 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK