DeviceHive.CommandEventArgs.CommandEventArgs C# (CSharp) Method

CommandEventArgs() public method

Constructs a command event arguments structure
public CommandEventArgs ( DeviceCommand cmd ) : Microsoft.SPOT
cmd DeviceCommand Command that had caused an event. Should be expected to be null.
return Microsoft.SPOT
        public CommandEventArgs(DeviceCommand cmd)
        {
            Command = cmd;
        }
CommandEventArgs