| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- //
- // System.Data.IDataParameter.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- 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
- {
- }
- }
- }
- }
|