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

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DesignBindingConverter.cs
- DbConnectionHelper.cs
- Byte.cs
- XmlDocument.cs
- SecurityCredentialsManager.cs
- CapabilitiesState.cs
- XmlAttributeAttribute.cs
- Variable.cs
- SingleObjectCollection.cs
- XmlAtomicValue.cs
- GPRECTF.cs
- FastEncoder.cs
- FixedStringLookup.cs
- SamlNameIdentifierClaimResource.cs
- ValueSerializer.cs
- TextTreeRootTextBlock.cs
- InputScopeManager.cs
- Maps.cs
- Attributes.cs
- EndpointNameMessageFilter.cs
- DeleteIndexBinder.cs
- datacache.cs
- ListViewItem.cs
- TextElementCollection.cs
- Form.cs
- SchemaMapping.cs
- InputLanguageEventArgs.cs
- _ConnectStream.cs
- StyleModeStack.cs
- BinHexDecoder.cs
- CultureSpecificCharacterBufferRange.cs
- FileDialog.cs
- FrameworkContentElement.cs
- Part.cs
- ReadWriteSpinLock.cs
- StateInitialization.cs
- SizeChangedEventArgs.cs
- InternalDispatchObject.cs
- xmlsaver.cs
- ZipIOExtraFieldPaddingElement.cs
- DataChangedEventManager.cs
- ItemCheckEvent.cs
- AttributeQuery.cs
- ObjectHelper.cs
- LineInfo.cs
- RuleElement.cs
- StaticDataManager.cs
- WebBrowserEvent.cs
- PtsHost.cs
- DataTable.cs
- UDPClient.cs
- HtmlInputText.cs
- GenerateScriptTypeAttribute.cs
- Int16AnimationUsingKeyFrames.cs
- AttachmentCollection.cs
- SelectionItemProviderWrapper.cs
- DesignerForm.cs
- MSG.cs
- GridViewItemAutomationPeer.cs
- SHA256.cs
- DBSchemaTable.cs
- PrinterResolution.cs
- ArraySortHelper.cs
- SettingsBindableAttribute.cs
- WebPartsSection.cs
- OdbcPermission.cs
- SoapUnknownHeader.cs
- SingleConverter.cs
- mactripleDES.cs
- ToolStripItemTextRenderEventArgs.cs
- SessionState.cs
- SupportsEventValidationAttribute.cs
- TextStore.cs
- NativeMethods.cs
- DataIdProcessor.cs
- CalloutQueueItem.cs
- EntityDescriptor.cs
- URLMembershipCondition.cs
- EntityDataSourceSelectingEventArgs.cs
- HostUtils.cs
- Int16AnimationBase.cs
- PagerStyle.cs
- RichTextBoxDesigner.cs
- WindowsSolidBrush.cs
- EarlyBoundInfo.cs
- XmlIlTypeHelper.cs
- VariableExpressionConverter.cs
- ConfigViewGenerator.cs
- EntityDataSourceUtil.cs
- IdentityNotMappedException.cs
- X509Certificate.cs
- ServiceModelReg.cs
- DataKey.cs
- WebPartsSection.cs
- DebugViewWriter.cs
- GradientStopCollection.cs
- FileUpload.cs
- PageBreakRecord.cs
- CodeThrowExceptionStatement.cs
- OperationAbortedException.cs