Class DbBatchCommandCollection
Inheritance
DbBatchCommandCollection
Assembly: Npgsql.dll
Syntax
public abstract class DbBatchCommandCollection : IList<DbBatchCommand>, ICollection<DbBatchCommand>, IEnumerable<DbBatchCommand>, IEnumerable
Properties
Count
Declaration
public abstract int Count { get; }
Property Value
IsReadOnly
Declaration
public abstract bool IsReadOnly { get; }
Property Value
Item[Int32]
Declaration
public DbBatchCommand this[int index] { get; set; }
Parameters
Type |
Name |
Description |
Int32 |
index |
|
Property Value
Methods
Add(DbBatchCommand)
Declaration
public abstract void Add(DbBatchCommand item)
Parameters
Clear()
Declaration
public abstract void Clear()
Contains(DbBatchCommand)
Declaration
public abstract bool Contains(DbBatchCommand item)
Parameters
Returns
CopyTo(DbBatchCommand[], Int32)
Declaration
public abstract void CopyTo(DbBatchCommand[] array, int arrayIndex)
Parameters
GetBatchCommand(Int32)
Declaration
protected abstract DbBatchCommand GetBatchCommand(int index)
Parameters
Type |
Name |
Description |
Int32 |
index |
|
Returns
GetEnumerator()
Declaration
public abstract IEnumerator<DbBatchCommand> GetEnumerator()
Returns
IndexOf(DbBatchCommand)
Declaration
public abstract int IndexOf(DbBatchCommand item)
Parameters
Returns
Insert(Int32, DbBatchCommand)
Declaration
public abstract void Insert(int index, DbBatchCommand item)
Parameters
Remove(DbBatchCommand)
Declaration
public abstract bool Remove(DbBatchCommand item)
Parameters
Returns
RemoveAt(Int32)
Declaration
public abstract void RemoveAt(int index)
Parameters
Type |
Name |
Description |
Int32 |
index |
|
SetBatchCommand(Int32, DbBatchCommand)
Declaration
protected abstract void SetBatchCommand(int index, DbBatchCommand batchCommand)
Parameters
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Implements