Sha256: 50285762f3ba2706df6d77077dc38764a7ed00ce934df8d8dcf531f9ccec6f9b
Contents?: true
Size: 1.15 KB
Versions: 23
Compression:
Stored size: 1.15 KB
Contents
using Microsoft.Scripting.Utils; using Microsoft.Scripting.Runtime; using IronRuby.Runtime; using IronRuby.Builtins; using System; using System.Runtime.InteropServices; namespace rho.rubyext { [RubyModule("WebView")] public static class RhoWebView { #region Private Implementation Details #endregion #region Private Instance & Singleton Methods [RubyMethodAttribute("navigate", RubyMethodAttributes.PublicSingleton)] public static void Navigate(RubyModule/*!*/ self, [NotNull]String/*!*/ url) { } [RubyMethodAttribute("execute_js", RubyMethodAttributes.PublicSingleton)] public static void execute_js(RubyModule/*!*/ self, [NotNull]String/*!*/ strScript) { } [RubyMethodAttribute("current_location", RubyMethodAttributes.PublicSingleton)] public static String currentLocation(RubyModule/*!*/ self) { return null; } [RubyMethodAttribute("set_menu_items", RubyMethodAttributes.PublicSingleton)] public static void setMenuItems(RubyModule/*!*/ self, Hash valMenu) { } #endregion } }
Version data entries
23 entries across 23 versions & 1 rubygems