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

16 lines
595 B
C#
Raw Normal View History

//------------------------------------------------------------------------------
// <copyright file="DataSourceOperationDelegates.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.UI {
using System.Collections;
public delegate void DataSourceViewSelectCallback(IEnumerable data);
// returns whether the exception was handled
public delegate bool DataSourceViewOperationCallback(int affectedRecords, Exception ex);
}