Example #1
0
 public CallingAFunctionFromJavascript()
 {
     context = new DotNetContext();
     context.Add("callingAFunction", () => 42);
 }
Example #2
0
 public CallingAParametisedMethodFromJavascript()
 {
     context = new DotNetContext();
     context.Add("callingAMethod", () => result = "called");
 }
Example #3
0
 public CallingAMethodFromJavascript()
 {
     context = new DotNetContext();
     context.Add("callingAMethod", () => called = true);
 }
Example #4
0
 public CallingAParametisedMethodFromJavascript()
 {
     context = new DotNetContext();
     context.Add("callingAMethod", () => result = "called");
 }
Example #5
0
 public CallingAMethodFromJavascript()
 {
     context = new DotNetContext();
     context.Add("callingAMethod", () => called = true);
 }
Example #6
0
 public CallingAFunctionFromJavascript()
 {
     context = new DotNetContext();
     context.Add("callingAFunction", () => 42);
 }