ScriptStack 1.0.4
Loading...
Searching...
No Matches
Host.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.Text;
4
6
8{
9
80 public interface Host {
81
88 object Invoke(string routine, List<object> parameters);
89
90 }
91
92}
The main interface to create a Host. A Host can implement Routine's to extend its functionality.
Definition Host.cs:80
object Invoke(string routine, List< object > parameters)
Called when a Routine is invoked.