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

DbCommandOptionalFeatures.cs « System.Data.Common « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97493e5bbafb030019973e16fa196d652b04bd4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// System.Data.Common.DbCommandOptionalFeatures.cs
//
// Author:
//   Tim Coleman (tim@timcoleman.com)
//
// Copyright (C) Tim Coleman, 2003
//

#if NET_1_2

namespace System.Data.Common {
	public enum DbCommandOptionalFeatures 
	{
		ExecutePageReader,
		None
	}
}

#endif