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

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

#if NET_2_0

namespace System.Data.Mapping {
        public enum MappingDataSourceType 
        {
		SQLServer,
		Xml,
		Object
        }
}

#endif // NET_2_0