CodeTV.WinLIRC.CommandReceivedEventArgs.CommandReceivedEventArgs C# (CSharp) Method

CommandReceivedEventArgs() public method

public CommandReceivedEventArgs ( string rawIrCommand, string code, int repeat, string irCommand, string remoteCommandName ) : System
rawIrCommand string
code string
repeat int
irCommand string
remoteCommandName string
return System
            public CommandReceivedEventArgs(string rawIrCommand, string code, int repeat, string irCommand, string remoteCommandName)
            {
                this.rawIrCommand = rawIrCommand;
                this.code = code;
                this.repeat = repeat;
                this.irCommand = irCommand;
                this.remoteCommandName = remoteCommandName;
            }
WinLIRC.CommandReceivedEventArgs