Search Results for

    Show / Hide Table of Contents

    Class HttpAgentCommand

    IDbCommand implementation for HttpAgent that stores SQL and parameters for later execution by HttpAgentExecutor.

    Inheritance
    object
    HttpAgentCommand
    Implements
    IDbCommand
    IDisposable
    Inherited Members
    object.GetType()
    object.MemberwiseClone()
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    Namespace: Reportman.Reporting
    Assembly: Reportman.Reporting.dll
    Syntax
    public class HttpAgentCommand : IDbCommand, IDisposable

    Constructors

    View Source

    HttpAgentCommand(HttpAgentExecutor)

    Declaration
    public HttpAgentCommand(HttpAgentExecutor executor)
    Parameters
    Type Name Description
    HttpAgentExecutor executor

    Properties

    View Source

    CommandText

    Declaration
    public string CommandText { get; set; }
    Property Value
    Type Description
    string
    View Source

    CommandTimeout

    Declaration
    public int CommandTimeout { get; set; }
    Property Value
    Type Description
    int
    View Source

    CommandType

    Declaration
    public CommandType CommandType { get; set; }
    Property Value
    Type Description
    CommandType
    View Source

    Connection

    Declaration
    public IDbConnection Connection { get; set; }
    Property Value
    Type Description
    IDbConnection
    View Source

    Parameters

    Declaration
    public IDataParameterCollection Parameters { get; }
    Property Value
    Type Description
    IDataParameterCollection
    View Source

    Transaction

    Declaration
    public IDbTransaction Transaction { get; set; }
    Property Value
    Type Description
    IDbTransaction
    View Source

    UpdatedRowSource

    Declaration
    public UpdateRowSource UpdatedRowSource { get; set; }
    Property Value
    Type Description
    UpdateRowSource

    Methods

    View Source

    Cancel()

    Declaration
    public void Cancel()
    View Source

    CreateParameter()

    Declaration
    public IDbDataParameter CreateParameter()
    Returns
    Type Description
    IDbDataParameter
    View Source

    Dispose()

    Declaration
    public void Dispose()
    View Source

    ExecuteNonQuery()

    Declaration
    public int ExecuteNonQuery()
    Returns
    Type Description
    int
    View Source

    ExecuteReader()

    Declaration
    public IDataReader ExecuteReader()
    Returns
    Type Description
    IDataReader
    View Source

    ExecuteReader(CommandBehavior)

    Declaration
    public IDataReader ExecuteReader(CommandBehavior behavior)
    Parameters
    Type Name Description
    CommandBehavior behavior
    Returns
    Type Description
    IDataReader
    View Source

    ExecuteScalar()

    Declaration
    public object ExecuteScalar()
    Returns
    Type Description
    object
    View Source

    Prepare()

    Declaration
    public void Prepare()

    Implements

    IDbCommand
    IDisposable
    • View Source
    In this article
    Back to top Generated by DocFX