namespace System.Web.UI.WebControls {
///
/// Represents data that is passed into an CallingDataMethodsEventHandler delegate.
///
public class CallingDataMethodsEventArgs : EventArgs {
///
/// Set this property when the data methods are static methods on a type.
/// When this property is set, should not be set.
///
public Type DataMethodsType {
get;
set;
}
///
/// Set this property with the actual instance where the data methods are present.
/// When this property is set, should not be set.
///
public object DataMethodsObject {
get;
set;
}
}
}