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

Version Path
rhodes-3.0.2 platform/wp7/RhoRubyExtGen/RhoWebView.cs
rhodes-3.0.2.beta.1 platform/wp7/RhoRubyExtGen/RhoWebView.cs
rhodes-3.0.1 platform/wp7/RhoRubyExtGen/RhoWebView.cs
rhodes-3.0.1.beta.8 platform/wp7/RhoRubyExtGen/RhoWebView.cs
rhodes-3.0.1.beta.7 platform/wp7/RhoRubyExtGen/RhoWebView.cs
rhodes-3.0.1.beta.6 platform/wp7/RhoRubyExtGen/RhoWebView.cs
rhodes-3.0.1.beta.5 platform/wp7/RhoRubyExtGen/RhoWebView.cs
rhodes-3.0.1.beta.4 platform/wp7/RhoRubyExtGen/RhoWebView.cs
rhodes-3.0.1.beta.3 platform/wp7/RhoRubyExtGen/RhoWebView.cs
rhodes-3.0.1.beta.2 platform/wp7/RhoRubyExtGen/RhoWebView.cs
rhodes-3.0.0 platform/wp7/RhoRubyExtGen/RhoWebView.cs
rhodes-3.0.0.beta.7 platform/wp7/RhoRubyExtGen/RhoWebView.cs
rhodes-3.0.0.beta.6 platform/wp7/RhoRubyExtGen/RhoWebView.cs
rhodes-3.0.0.beta.5 platform/wp7/RhoRubyExtGen/RhoWebView.cs
rhodes-3.0.0.beta.4 platform/wp7/RhoRubyExtGen/RhoWebView.cs
rhodes-3.0.0.beta.3 platform/wp7/RhoRubyExtGen/RhoWebView.cs
rhodes-3.0.0.beta.2 platform/wp7/RhoRubyExtGen/RhoWebView.cs
rhodes-3.0.0.beta.1 platform/wp7/RhoRubyExtGen/RhoWebView.cs
rhodes-2.4.1 platform/wp7/RhoRubyExtGen/RhoWebView.cs
rhodes-2.4.1.beta.1 platform/wp7/RhoRubyExtGen/RhoWebView.cs