public static ScriptChannel ConstructForScript(ScriptChannelCallback config, out ScriptChannel channel) { ScriptChannel nc = new ScriptChannel(config); channel = nc; return(nc); }
public ScriptChannel(ScriptChannelCallback config) { //Trace.Assert(config.Type == DataType.Function); this.config = config; }