Search Results for

    Show / Hide Table of Contents

    Class NpgsqlBatchCommandCollection

    Inheritance
    object
    DbBatchCommandCollection
    NpgsqlBatchCommandCollection
    Implements
    IList<><NpgsqlBatchCommand>
    Namespace: Npgsql
    Assembly: Npgsql.dll
    Syntax
    public class NpgsqlBatchCommandCollection : DbBatchCommandCollection, IList<NpgsqlBatchCommand>

    Properties

    | Improve this Doc View Source

    Count

    Declaration
    public override int Count { get; }
    Property Value
    Type Description
    int
    Overrides
    DbBatchCommandCollection.Count
    | Improve this Doc View Source

    IsReadOnly

    Declaration
    public override bool IsReadOnly { get; }
    Property Value
    Type Description
    bool
    Overrides
    DbBatchCommandCollection.IsReadOnly
    | Improve this Doc View Source

    this[int]

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

    Methods

    | Improve this Doc View Source

    Add(NpgsqlBatchCommand)

    Declaration
    public void Add(NpgsqlBatchCommand item)
    Parameters
    Type Name Description
    NpgsqlBatchCommand item
    | Improve this Doc View Source

    Add(DbBatchCommand)

    Declaration
    public override void Add(DbBatchCommand item)
    Parameters
    Type Name Description
    DbBatchCommand item
    Overrides
    DbBatchCommandCollection.Add(DbBatchCommand)
    | Improve this Doc View Source

    Clear()

    Declaration
    public override void Clear()
    Overrides
    DbBatchCommandCollection.Clear()
    | Improve this Doc View Source

    Contains(NpgsqlBatchCommand)

    Declaration
    public bool Contains(NpgsqlBatchCommand item)
    Parameters
    Type Name Description
    NpgsqlBatchCommand item
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    Contains(DbBatchCommand)

    Declaration
    public override bool Contains(DbBatchCommand item)
    Parameters
    Type Name Description
    DbBatchCommand item
    Returns
    Type Description
    bool
    Overrides
    DbBatchCommandCollection.Contains(DbBatchCommand)
    | Improve this Doc View Source

    CopyTo(NpgsqlBatchCommand[], int)

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

    CopyTo(DbBatchCommand[], int)

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

    GetBatchCommand(int)

    Declaration
    protected override DbBatchCommand GetBatchCommand(int index)
    Parameters
    Type Name Description
    int index
    Returns
    Type Description
    DbBatchCommand
    Overrides
    DbBatchCommandCollection.GetBatchCommand(int)
    | Improve this Doc View Source

    GetEnumerator()

    Declaration
    public override IEnumerator<DbBatchCommand> GetEnumerator()
    Returns
    Type Description
    IEnumerator<><DbBatchCommand>
    Overrides
    DbBatchCommandCollection.GetEnumerator()
    | Improve this Doc View Source

    IndexOf(NpgsqlBatchCommand)

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

    IndexOf(DbBatchCommand)

    Declaration
    public override int IndexOf(DbBatchCommand item)
    Parameters
    Type Name Description
    DbBatchCommand item
    Returns
    Type Description
    int
    Overrides
    DbBatchCommandCollection.IndexOf(DbBatchCommand)
    | Improve this Doc View Source

    Insert(int, NpgsqlBatchCommand)

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

    Insert(int, DbBatchCommand)

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

    Remove(NpgsqlBatchCommand)

    Declaration
    public bool Remove(NpgsqlBatchCommand item)
    Parameters
    Type Name Description
    NpgsqlBatchCommand item
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    Remove(DbBatchCommand)

    Declaration
    public override bool Remove(DbBatchCommand item)
    Parameters
    Type Name Description
    DbBatchCommand item
    Returns
    Type Description
    bool
    Overrides
    DbBatchCommandCollection.Remove(DbBatchCommand)
    | Improve this Doc View Source

    RemoveAt(int)

    Declaration
    public override void RemoveAt(int index)
    Parameters
    Type Name Description
    int index
    Overrides
    DbBatchCommandCollection.RemoveAt(int)
    | Improve this Doc View Source

    SetBatchCommand(int, DbBatchCommand)

    Declaration
    protected override void SetBatchCommand(int index, DbBatchCommand batchCommand)
    Parameters
    Type Name Description
    int index
    DbBatchCommand batchCommand
    Overrides
    DbBatchCommandCollection.SetBatchCommand(int, DbBatchCommand)

    Implements

    IList<>
    • Improve this Doc
    • View Source
    In This Article
    Back to top © Copyright 2023 The Npgsql Development Team