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

SqlRowUpdatedEventHandler.cs « System.Data.SqlClient « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8cad2f1cbca5190b5c6ecf31a5cb95e4b01131e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// System.Data.SqlClient.SqlRowUpdatedEventHandler.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 SqlRowUpdatedEventHandler(object sender,
					SqlRowUpdatedEventArgs e);
}