15 lines
556 B
C#
15 lines
556 B
C#
|
//------------------------------------------------------------------------------
|
||
|
// <copyright file="SqlDataSourceCommandEventHandler.cs" company="Microsoft">
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// </copyright>
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
namespace System.Web.UI.WebControls {
|
||
|
|
||
|
using System;
|
||
|
|
||
|
|
||
|
public delegate void SqlDataSourceCommandEventHandler(object sender, SqlDataSourceCommandEventArgs e);
|
||
|
}
|
||
|
|