Esempio n. 1
0
 public static bool Send(Objects.Client client, PipeConstantType constantType, uint value)
 {
     SetConstantPacket p = new SetConstantPacket(client);
     p.ConstantType = constantType;
     p.Value = value;
     return p.Send();
 }
Esempio n. 2
0
        public static bool Send(Objects.Client client, PipeConstantType constantType, uint value)
        {
            SetConstantPacket p = new SetConstantPacket(client);

            p.ConstantType = constantType;
            p.Value        = value;
            return(p.Send());
        }