C# 클래스 Eryan.Factories.FunctionCallFactory

This class builds functionCall objects
파일 보기 프로젝트 열기: emist/Eryan 1 사용 예제들

공개 메소드들

메소드 설명
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

메소드 상세

build() 공개 메소드

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

build() 공개 메소드

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
리턴 eveobjects.functionCall

build() 공개 메소드

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
리턴 eveobjects.functionCall