Auto.Server.DbClientNotifyDispatcher.Dispatch C# (CSharp) Method

Dispatch() public method

public Dispatch ( IRpcImplInstnce impl, RpcMethod method, ServiceImplementStub cont ) : void
impl IRpcImplInstnce
method RPCBase.RpcMethod
cont ServiceImplementStub
return void
        public void Dispatch(IRpcImplInstnce impl, RpcMethod method, ServiceImplementStub.SendResult cont)
        {
            switch (method.MethodId)
            {
            case 1:
                ((IDbClientNotifyImpl)impl).NotifyConnectionInfo((String)(method.Args[0]), (Int32)(method.Args[1]));
                break;
            }
        }
    }
DbClientNotifyDispatcher