linux-packaging-mono/mcs/class/referencesource/System.Web/UI/WebControls/ObjectDataSourceDisposingEventHandler.cs

18 lines
694 B
C#
Raw Normal View History

//------------------------------------------------------------------------------
// <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);
}