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