Added Files.
[mono.git] / mcs / class / System.Data / IDataParameterCollection.cs
1 //
2 // System.Data.IDataParameterCollection.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 namespace System.Data
11 {
12         /// <summary>
13         /// Collects all parameters relevant to a Command object and their mappings to DataSet columns, and is implemented by .NET data providers that access data sources.
14         /// </summary>
15         public interface IDataParameterCollection : IList, ICollection, IEnumerable
16         {
17                 void RemoveAt(string parameterName)
18                 {
19                 }
20                 
21                 int IndexOf(string parameterName)
22                 {
23                 }
24                 
25                 bool Contains(string parameterName)
26                 {
27                 }
28
29                 object this[string parameterName]
30                 {
31                         get
32                         {
33                         }
34                         set
35                         {
36                         }
37                 }
38         }
39 }