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

IDataParameter.cs « System.Data « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3528cb2f2467ea182db0559c229923a58bd3a999 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
// System.Data.IDataParameter.cs
//
// Author:
//   Christopher Podurgiel (cpodurgiel@msn.com)
//
// (C) Chris Podurgiel
//

using System;

namespace System.Data
{
	/// <summary>
	/// Represents a parameter to a Command object, and optionally, its mapping to DataSet columns; and is implemented by .NET data providers that access data sources.
	/// </summary>
	public interface IDataParameter
	{
		
		DbType DbType{get;set;}

		ParameterDirection Direction{get;set;}

		bool IsNullable{get;}

		string ParameterName{get;set;}

		string SourceColumn{get;set;}

		DataRowVersion SourceVersion {get;set;}

		object Value {get;set;}


	}
}