コード例 #1
0
ファイル: window.cs プロジェクト: lieberkind/testrepo
 public static JSFunctionCall alert(JSValueString str)
 {
     return new JSFunctionCall("alert", str);
 }
コード例 #2
0
ファイル: alert.cs プロジェクト: lieberkind/testrepo
 public static JSFunctionCall Call(JSValueString str)
 {
     return window.alert(str);
 }
コード例 #3
0
ファイル: document.cs プロジェクト: lieberkind/testrepo
 public static JSFunctionCall getElementById(JSValueString str)
 {
     return new JSFunctionCall("getElementById", str);
 }