Search Results for

    Show / Hide Table of Contents

    Class DbBatchCommandCollection

    Inheritance
    Object
    DbBatchCommandCollection
    NpgsqlBatchCommandCollection
    Implements
    IList<DbBatchCommand>
    ICollection<DbBatchCommand>
    IEnumerable<DbBatchCommand>
    IEnumerable
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Object.ToString()
    Namespace: System.Data.Common
    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
    Type Description
    Int32

    IsReadOnly

    Declaration
    public abstract bool IsReadOnly { get; }
    Property Value
    Type Description
    Boolean

    Item[Int32]

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

    Methods

    Add(DbBatchCommand)

    Declaration
    public abstract void Add(DbBatchCommand item)
    Parameters
    Type Name Description
    DbBatchCommand item

    Clear()

    Declaration
    public abstract void Clear()

    Contains(DbBatchCommand)

    Declaration
    public abstract bool Contains(DbBatchCommand item)
    Parameters
    Type Name Description
    DbBatchCommand item
    Returns
    Type Description
    Boolean

    CopyTo(DbBatchCommand[], Int32)

    Declaration
    public abstract void CopyTo(DbBatchCommand[] array, int arrayIndex)
    Parameters
    Type Name Description
    DbBatchCommand[] array
    Int32 arrayIndex

    GetBatchCommand(Int32)

    Declaration
    protected abstract DbBatchCommand GetBatchCommand(int index)
    Parameters
    Type Name Description
    Int32 index
    Returns
    Type Description
    DbBatchCommand

    GetEnumerator()

    Declaration
    public abstract IEnumerator<DbBatchCommand> GetEnumerator()
    Returns
    Type Description
    IEnumerator<DbBatchCommand>

    IndexOf(DbBatchCommand)

    Declaration
    public abstract int IndexOf(DbBatchCommand item)
    Parameters
    Type Name Description
    DbBatchCommand item
    Returns
    Type Description
    Int32

    Insert(Int32, DbBatchCommand)

    Declaration
    public abstract void Insert(int index, DbBatchCommand item)
    Parameters
    Type Name Description
    Int32 index
    DbBatchCommand item

    Remove(DbBatchCommand)

    Declaration
    public abstract bool Remove(DbBatchCommand item)
    Parameters
    Type Name Description
    DbBatchCommand item
    Returns
    Type Description
    Boolean

    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
    Type Name Description
    Int32 index
    DbBatchCommand batchCommand

    Explicit Interface Implementations

    IEnumerable.GetEnumerator()

    Declaration
    IEnumerator IEnumerable.GetEnumerator()
    Returns
    Type Description
    IEnumerator

    Implements

    System.Collections.Generic.IList<T>
    System.Collections.Generic.ICollection<T>
    System.Collections.Generic.IEnumerable<T>
    System.Collections.IEnumerable
    In This Article
    Back to top © Copyright 2022 The Npgsql Development Team