C# Class kOS.Safe.Function.FunctionManager

Inheritance: IFunctionManager
Exibir arquivo Open project: KSP-KOS/KOS

Public Methods

Method Description
CallFunction ( string functionName ) : void
Exists ( string functionName ) : bool

Find out if the function with the name given exists already in the built-in hardcoded functions set (as opposed to the user functions).

FunctionManager ( SafeSharedObjects shared ) : System
Load ( ) : void
RegisterMethod ( Attribute attr, Type type ) : void

Method Details

CallFunction() public method

public CallFunction ( string functionName ) : void
functionName string
return void

Exists() public method

Find out if the function with the name given exists already in the built-in hardcoded functions set (as opposed to the user functions).
public Exists ( string functionName ) : bool
functionName string check if this function exists
return bool

FunctionManager() public method

public FunctionManager ( SafeSharedObjects shared ) : System
shared SafeSharedObjects
return System

Load() public method

public Load ( ) : void
return void

RegisterMethod() public static method

public static RegisterMethod ( Attribute attr, Type type ) : void
attr System.Attribute
type System.Type
return void