Example #1
0
 public APIRequest(CmdId cmdId, Type paramType, CmdId responseCmdId, APIFeatureState featureState = APIFeatureState.Untested)
 {
     CmdId         = cmdId;
     ParamType     = paramType;
     ResponseCmdId = responseCmdId;
     FeatureState  = featureState;
 }
Example #2
0
 public APIEvent(CmdId cmdId, Type paramType, APIFeatureState featureState = APIFeatureState.Untested)
 {
     this.CmdId        = cmdId;
     this.ParamType    = paramType;
     this.FeatureState = featureState;
 }