C# Class Utilities.ORM.Manager.QueryProvider.Default.Command

Command class
Inheritance: ICommand
Show file Open project: JaCraig/Craig-s-Utility-Library

Public Methods

Method Description
Command ( Action CallBack, object Object, string SQLCommand, CommandType CommandType, IParameter Parameters ) : System

Constructor

Command ( Action CallBack, object Object, string SQLCommand, CommandType CommandType, string ParameterStarter, object Parameters ) : System

Constructor

Equals ( object obj ) : bool

Determines if the objects are equal

Finalize ( IList Result ) : void

Called after the command is run

GetHashCode ( ) : int

Returns the hash code for the command

ToString ( ) : string

Returns the string representation of the command

Method Details

Command() public method

Constructor
public Command ( Action CallBack, object Object, string SQLCommand, CommandType CommandType, IParameter Parameters ) : System
CallBack Action Called when command has been executed
Object object Object
SQLCommand string SQL Command
CommandType CommandType Command type
Parameters IParameter Parameters
return System

Command() public method

Constructor
public Command ( Action CallBack, object Object, string SQLCommand, CommandType CommandType, string ParameterStarter, object Parameters ) : System
CallBack Action Called when command has been executed
Object object Object
SQLCommand string SQL Command
CommandType CommandType Command type
ParameterStarter string Parameter starter
Parameters object Parameters
return System

Equals() public method

Determines if the objects are equal
public Equals ( object obj ) : bool
obj object Object to compare to
return bool

Finalize() public method

Called after the command is run
public Finalize ( IList Result ) : void
Result IList Result of the command
return void

GetHashCode() public method

Returns the hash code for the command
public GetHashCode ( ) : int
return int

ToString() public method

Returns the string representation of the command
public ToString ( ) : string
return string