예제 #1
0
 private void RunScript(string script)
 {
     _asyncronousEngine = new AsyncronousEngine();
     _asyncronousEngine.EmbedScriptAssemblies.Add(Assembly.GetExecutingAssembly());
     _asyncronousEngine.Engine.SetValue("storage", new Storage(_asyncronousEngine));
     _asyncronousEngine.RequestFileExecution(script, block: true);
 }
예제 #2
0
파일: Program.cs 프로젝트: russlank/Jint.Ex
        static void SetIntervalDemo()
        {
            Console.WriteLine("Jint setInterval() demo");

            var ae = new AsyncronousEngine();

            ae.EmbedScriptAssemblies.Add(Assembly.GetExecutingAssembly());
            ae.RequestFileExecution("setIntervalSetTimeoutNested.js");

            Console.WriteLine("Hit a key to stop");
            Console.ReadKey();
            ae.RequestClearQueue();

            Console.WriteLine("*** Done ***");
            Console.ReadKey();
        }
예제 #3
0
 private void butSynchronousExecution_Click(object sender, EventArgs e)
 {
     _asyncronousEngine.RequestFileExecution("SynchronousExecution.js");
 }
예제 #4
0
 private void RunScript(string script)
 {
     Init();
     _asyncronousEngine.RequestFileExecution(script, block: true);
 }
예제 #5
0
 public void SynchronousExecution()
 {
     _asyncronousEngine.RequestFileExecution("SynchronousExecution.js");
 }