Sha256: 86cbd846cee2969e4bc5fa4a2871290433934f1b9b3e5827c7ce717208177f83

Contents?: true

Size: 1.12 KB

Versions: 18

Compression:

Stored size: 1.12 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("Rho")]
    public static class RhoRoot
    {
        [RubyModule("AsyncHttp")]
        public static class RhoAsyncHttp
        {

            #region Private Implementation Details

            #endregion

            #region Private Instance & Singleton Methods

            [RubyMethodAttribute("cancel", RubyMethodAttributes.PublicSingleton)]
            public static void Cancel(RubyModule/*!*/ self, [NotNull]String cancelCallback)
            {

            }

            [RubyMethodAttribute("cancel", RubyMethodAttributes.PublicSingleton)]
            public static void Cancel(RubyModule/*!*/ self)
            {

            }

            [RubyMethodAttribute("do_request", RubyMethodAttributes.PublicSingleton)]
            public static MutableString doRequest(RubyModule/*!*/ self, [NotNull]String command, Hash args)
            {
                return null;
            }

            #endregion
        }
    }
}

Version data entries

18 entries across 18 versions & 1 rubygems

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