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