BlinkStickDotNet.SendColorEventArgs.SendColorEventArgs C# (CSharp) Метод

SendColorEventArgs() публичный Метод

public SendColorEventArgs ( byte channel, byte index, byte r, byte g, byte b ) : System
channel byte
index byte
r byte
g byte
b byte
Результат System
        public SendColorEventArgs(byte channel, byte index, byte r, byte g, byte b)
        {
            this.Channel = channel;
            this.Index = index;
            this.R = r;
            this.G = g;
            this.B = b;
            this.SendToDevice = true;
        }
    }
SendColorEventArgs