public IncodingMetaCallbackStoreManipulateDsl Set(string key, Selector value, string prefix = "root") { this.methods.Add(new { verb = "set", key, value = value.ToString(), prefix }); return(this); }
IExecutableSetting Insert(string method, Selector selector) { string code = JavaScriptCodeTemplate.Target_Insert.F(method, string.IsNullOrWhiteSpace(selector) ? "''" : selector.ToString()); return(this.plugInDsl.Registry(new ExecutableEval(code))); }