9 lines
403 B
C#
9 lines
403 B
C#
|
namespace System.Web.UI.WebControls {
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Represents a method that handles the CreatingModelDataSource event of Databound controls for customizing the
|
|||
|
/// <see cref='System.Web.UI.WebControls.ModelDataSource' /> used for data operations.
|
|||
|
/// </summary>
|
|||
|
public delegate void CreatingModelDataSourceEventHandler(object sender, CreatingModelDataSourceEventArgs e);
|
|||
|
}
|