Ejemplo n.º 1
0
    static int set_OnMessage(IntPtr L)
    {
        object o = null;

        try
        {
            o = ToLua.ToObject(L, 1);
            BestHTTP.WebSocket.WebSocket obj = (BestHTTP.WebSocket.WebSocket)o;
            BestHTTP.WebSocket.OnWebSocketMessageDelegate arg0 = null;
            LuaTypes funcType2 = LuaDLL.lua_type(L, 2);

            if (funcType2 != LuaTypes.LUA_TFUNCTION)
            {
                arg0 = (BestHTTP.WebSocket.OnWebSocketMessageDelegate)ToLua.CheckObject(L, 2, typeof(BestHTTP.WebSocket.OnWebSocketMessageDelegate));
            }
            else
            {
                LuaFunction func = ToLua.ToLuaFunction(L, 2);
                arg0 = DelegateFactory.CreateDelegate(typeof(BestHTTP.WebSocket.OnWebSocketMessageDelegate), func) as BestHTTP.WebSocket.OnWebSocketMessageDelegate;
            }

            obj.OnMessage = arg0;
            return(0);
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e, o == null ? "attempt to index OnMessage on a nil value" : e.Message));
        }
    }
Ejemplo n.º 2
0
    static int get_OnMessage(IntPtr L)
    {
        object o = null;

        try
        {
            o = ToLua.ToObject(L, 1);
            BestHTTP.WebSocket.WebSocket obj = (BestHTTP.WebSocket.WebSocket)o;
            BestHTTP.WebSocket.OnWebSocketMessageDelegate ret = obj.OnMessage;
            ToLua.Push(L, ret);
            return(1);
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e, o == null ? "attempt to index OnMessage on a nil value" : e.Message));
        }
    }
    static int set_OnMessage(IntPtr L)
    {
        object o = null;

        try
        {
            o = ToLua.ToObject(L, 1);
            BestHTTP.WebSocket.WebSocket obj = (BestHTTP.WebSocket.WebSocket)o;
            BestHTTP.WebSocket.OnWebSocketMessageDelegate arg0 = (BestHTTP.WebSocket.OnWebSocketMessageDelegate)ToLua.CheckDelegate <BestHTTP.WebSocket.OnWebSocketMessageDelegate>(L, 2);
            obj.OnMessage = arg0;
            return(0);
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e, o, "attempt to index OnMessage on a nil value"));
        }
    }