Microsoft.Protocols.TestSuites.MS_OXCFXICS.BitmaskCommand.BitmaskCommand C# (CSharp) Method

BitmaskCommand() public method

Initializes a new instance of the BitmaskCommand class.
public BitmaskCommand ( byte command, byte startValue, byte bitmask )
command byte The command byte.
startValue byte Low-order byte of first GLOBCNT.
bitmask byte Used for GLOBCNT generation where values are defined based /// on the StartingValue and which bits are set in Bitmask. ///
        public BitmaskCommand(byte command, byte startValue, byte bitmask)
            : base(command, 0x42, 0x42)
        {
            this.startValue = startValue;
            this.bitmask = bitmask;
        }
BitmaskCommand