Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PgSqlRowUpdatingEventHandler.cs « Mono.Data.PostgreSqlClient « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 69c0228534dd36088b74c9a9fc823d5ee35eec79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// System.Data.SqlClient.SqlRowUpdatingEventHandler.cs
//
// Author:
//   Rodrigo Moya (rodrigo@ximian.com)
//   Daniel Morgan (danmorg@sc.rr.com)
//
// (C) Ximian, Inc 2002
//

using System;
using System.Data;

namespace System.Data.SqlClient
{
	public delegate void SqlRowUpdatingEventHandler(object sender,
			SqlRowUpdatingEventArgs e);
}