Search Results for

    Show / Hide Table of Contents

    Class DbBatchCommandCollection

    Inheritance
    object
    DbBatchCommandCollection
    NpgsqlBatchCommandCollection
    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
    Type Description
    int
    | Improve this Doc View Source

    IsReadOnly

    Declaration
    public abstract bool IsReadOnly { get; }
    Property Value
    Type Description
    bool
    | Improve this Doc View Source

    this[int]

    Declaration
    public DbBatchCommand this[int index] { get; set; }
    Parameters
    Type Name Description
    int index
    Property Value
    Type Description
    DbBatchCommand

    Methods

    | Improve this Doc View Source

    Add(DbBatchCommand)

    Declaration
    public abstract void Add(DbBatchCommand item)
    Parameters
    Type Name Description
    DbBatchCommand item
    | 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
    Type Name Description
    DbBatchCommand item
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    CopyTo(DbBatchCommand[], int)

    Declaration
    public abstract void CopyTo(DbBatchCommand[] array, int arrayIndex)
    Parameters
    Type Name Description
    DbBatchCommand[] array
    int arrayIndex
    | Improve this Doc View Source

    GetBatchCommand(int)

    Declaration
    protected abstract DbBatchCommand GetBatchCommand(int index)
    Parameters
    Type Name Description
    int index
    Returns
    Type Description
    DbBatchCommand
    | Improve this Doc View Source

    GetEnumerator()

    Declaration
    public abstract IEnumerator<DbBatchCommand> GetEnumerator()
    Returns
    Type Description
    IEnumerator<><DbBatchCommand>
    | Improve this Doc View Source

    IndexOf(DbBatchCommand)

    Declaration
    public abstract int IndexOf(DbBatchCommand item)
    Parameters
    Type Name Description
    DbBatchCommand item
    Returns
    Type Description
    int
    | Improve this Doc View Source

    Insert(int, DbBatchCommand)

    Declaration
    public abstract void Insert(int index, DbBatchCommand item)
    Parameters
    Type Name Description
    int index
    DbBatchCommand item
    | Improve this Doc View Source

    Remove(DbBatchCommand)

    Declaration
    public abstract bool Remove(DbBatchCommand item)
    Parameters
    Type Name Description
    DbBatchCommand item
    Returns
    Type Description
    bool
    | 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
    Type Name Description
    int index
    DbBatchCommand batchCommand
    • Improve this Doc
    • View Source
    In This Article
    Back to top © Copyright 2023 The Npgsql Development Team