18 lines
694 B
C#
18 lines
694 B
C#
|
//------------------------------------------------------------------------------
|
||
|
// <copyright file="ObjectDataSourceDisposingEventHandler.cs" company="Microsoft">
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// </copyright>
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
namespace System.Web.UI.WebControls {
|
||
|
|
||
|
using System;
|
||
|
|
||
|
|
||
|
/// <devdoc>
|
||
|
/// Represents a method that handles the ObjectDisposing event of ObjectDataSource.
|
||
|
/// </devdoc>
|
||
|
public delegate void ObjectDataSourceDisposingEventHandler(object sender, ObjectDataSourceDisposingEventArgs e);
|
||
|
}
|
||
|
|