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: 42e64e224b6ad6e3d775f624850054098efa7cb9 (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_2_0

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

#endif