Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DbBatchCommandCollection.cs
Go to the documentation of this file.
3
4namespace System.Data.Common;
5
6public abstract class DbBatchCommandCollection : IList<DbBatchCommand>, ICollection<DbBatchCommand>, IEnumerable<DbBatchCommand>, IEnumerable
7{
8 public abstract int Count { get; }
9
10 public abstract bool IsReadOnly { get; }
11
12 public DbBatchCommand this[int index]
13 {
14 get
15 {
16 return GetBatchCommand(index);
17 }
18 set
19 {
21 }
22 }
23
25
30
31 public abstract void Add(DbBatchCommand item);
32
33 public abstract void Clear();
34
35 public abstract bool Contains(DbBatchCommand item);
36
37 public abstract void CopyTo(DbBatchCommand[] array, int arrayIndex);
38
39 public abstract bool Remove(DbBatchCommand item);
40
41 public abstract int IndexOf(DbBatchCommand item);
42
43 public abstract void Insert(int index, DbBatchCommand item);
44
45 public abstract void RemoveAt(int index);
46
47 protected abstract DbBatchCommand GetBatchCommand(int index);
48
49 protected abstract void SetBatchCommand(int index, DbBatchCommand batchCommand);
50}
void CopyTo(DbBatchCommand[] array, int arrayIndex)
IEnumerator< DbBatchCommand > GetEnumerator()
void Insert(int index, DbBatchCommand item)
DbBatchCommand GetBatchCommand(int index)
void SetBatchCommand(int index, DbBatchCommand batchCommand)
new IEnumerator< T > GetEnumerator()