//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
using System;
using System.Collections.Specialized;
using System.ComponentModel;
///
/// Represents data that is passed into an ObjectDataSourceMethodEventHandler delegate.
///
public class ObjectDataSourceMethodEventArgs : CancelEventArgs {
private IOrderedDictionary _inputParameters;
///
/// Creates a new instance of ObjectDataSourceMethodEventArgs.
///
public ObjectDataSourceMethodEventArgs(IOrderedDictionary inputParameters) {
_inputParameters = inputParameters;
}
///
/// The input parameters that will be passed to the method that will be invoked.
/// Change these parameters if the names and/or types need to be modified
/// for the invocation to succeed.
///
public IOrderedDictionary InputParameters {
get {
return _inputParameters;
}
}
}
}