Class DbBatchCommandCollection
Inheritance
object
DbBatchCommandCollection
Namespace: System.Data.Common
Assembly: Npgsql.dll
Syntax
public abstract class DbBatchCommandCollection : IList<DbBatchCommand>
Properties
|
Improve this Doc
View Source
Count
Declaration
public abstract int Count { get; }
Property Value
|
Improve this Doc
View Source
IsReadOnly
Declaration
public abstract bool IsReadOnly { get; }
Property Value
|
Improve this Doc
View Source
this[int]
Declaration
public DbBatchCommand this[int index] { get; set; }
Parameters
Type |
Name |
Description |
int |
index |
|
Property Value
Methods
|
Improve this Doc
View Source
Add(DbBatchCommand)
Declaration
public abstract void Add(DbBatchCommand item)
Parameters
|
Improve this Doc
View Source
Clear()
Declaration
public abstract void Clear()
|
Improve this Doc
View Source
Contains(DbBatchCommand)
Declaration
public abstract bool Contains(DbBatchCommand item)
Parameters
Returns
|
Improve this Doc
View Source
CopyTo(DbBatchCommand[], int)
Declaration
public abstract void CopyTo(DbBatchCommand[] array, int arrayIndex)
Parameters
|
Improve this Doc
View Source
GetBatchCommand(int)
Declaration
protected abstract DbBatchCommand GetBatchCommand(int index)
Parameters
Type |
Name |
Description |
int |
index |
|
Returns
|
Improve this Doc
View Source
GetEnumerator()
Declaration
public abstract IEnumerator<DbBatchCommand> GetEnumerator()
Returns
|
Improve this Doc
View Source
IndexOf(DbBatchCommand)
Declaration
public abstract int IndexOf(DbBatchCommand item)
Parameters
Returns
|
Improve this Doc
View Source
Insert(int, DbBatchCommand)
Declaration
public abstract void Insert(int index, DbBatchCommand item)
Parameters
|
Improve this Doc
View Source
Remove(DbBatchCommand)
Declaration
public abstract bool Remove(DbBatchCommand item)
Parameters
Returns
|
Improve this Doc
View Source
RemoveAt(int)
Declaration
public abstract void RemoveAt(int index)
Parameters
Type |
Name |
Description |
int |
index |
|
|
Improve this Doc
View Source
SetBatchCommand(int, DbBatchCommand)
Declaration
protected abstract void SetBatchCommand(int index, DbBatchCommand batchCommand)
Parameters