C# Class Eryan.Factories.FunctionCallFactory

This class builds functionCall objects
Mostra file Open project: emist/Eryan Class Usage Examples

Public Methods

Method Description
build ( string function ) : eveobjects.functionCall

Builds a functionCall object with no parameters

build ( string function, List arguments ) : eveobjects.functionCall

Builds a functionCall object with a variable argument list

build ( string function, string arg ) : eveobjects.functionCall

Builds a functionCall object with one parameter

Method Details

build() public method

Builds a functionCall object with no parameters
public build ( string function ) : eveobjects.functionCall
function string The function name to be called
return eveobjects.functionCall

build() public method

Builds a functionCall object with a variable argument list
public build ( string function, List arguments ) : eveobjects.functionCall
function string The function name to be called
arguments List A List of Strings containing the parameters to pass with the functionCall object
return eveobjects.functionCall

build() public method

Builds a functionCall object with one parameter
public build ( string function, string arg ) : eveobjects.functionCall
function string The function name to be called
arg string The parameter to pass with the functionCall object
return eveobjects.functionCall