C# Class Axiom.Compiler.CodeObjectModel.PrologCodeMethod

Represents a foreign imported method.
Inheritance: PrologCodeTerm
Datei anzeigen Open project: ahodroj/prologdotnet Class Usage Examples

Public Methods

Method Description
PrologCodeMethod ( ) : System
PrologCodeMethod ( string _class, string _assemblyName, int _type, string _methodName ) : System

Initializes a new instance of the PrologCodeMethod class.

PrologCodeMethod ( string _class, string _assemblyName, int _type, string _methodName, string _predicateName ) : System

Initializes a new instance of the PrologCodeMethod class.

Method Details

PrologCodeMethod() public method

public PrologCodeMethod ( ) : System
return System

PrologCodeMethod() public method

Initializes a new instance of the PrologCodeMethod class.
public PrologCodeMethod ( string _class, string _assemblyName, int _type, string _methodName ) : System
_class string class type that includes the method.
_assemblyName string assembly name.
_type int method return type.
_methodName string method name.
return System

PrologCodeMethod() public method

Initializes a new instance of the PrologCodeMethod class.
public PrologCodeMethod ( string _class, string _assemblyName, int _type, string _methodName, string _predicateName ) : System
_class string class type that contains the method.
_assemblyName string assembly name.
_type int return type of the method.
_methodName string method name.
_predicateName string predicate name.
return System