Beispiel #1
0
        private BaseResponse _handler_SetMember(BasePacket packet)
        {
            SetMemberRequest p = packet as SetMemberRequest;

            ProxyHolder proxy = this.GetProxyByID(p.ObjectID);

            if (proxy == null)
            {
                throw new Exception("Proxy Nr. not found: " + p.ObjectID);
            }

            return(new SetMemberResponse(proxy.SetMember(p.Name, p.Value), p));
        }