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

OleDbRowUpdatedEventHandler.cs « System.Data.OleDb « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fc911b7c6c65bbfb2b365644e019a4555d14d5ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// System.Data.OleDb.OleDbRowUpdatedEventHandler
//
// Author:
//   Rodrigo Moya (rodrigo@ximian.com)
//
// Copyright (C) Rodrigo Moya, 2002
//

using System.Data;
using System.Data.Common;

namespace System.Data.OleDb
{
	[Serializable]
	public delegate void OleDbRowUpdatedEventHandler (
		object sender,
		OleDbRowUpdatedEventArgs e);
}