/// +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= /// <summary> /// Constructor /// </summary> /// <param name="portObjectIn">The interrupt port object that associated with this event </param> /// <param name="evCodeIn">A user specified code which appears in the events</param> /// <param name="evValueIn">The current state of the pin 0 or 1</param> /// sent by this class /// <history> /// 01 Dec 16 Cynic - Originally written /// </history> public EventData(InterruptPortMM portObjectIn, int evCodeIn, uint evValueIn) { PortObject = portObjectIn; evCode = evCodeIn; evValue = evValueIn; }
/// +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= /// <summary> /// Constructor /// </summary> /// <param name="portObjectIn">The interrupt port object that associated with this event </param> /// <history> /// 01 Dec 16 Cynic - Originally written /// </history> public EventData(InterruptPortMM portObjectIn) { PortObject = portObjectIn; }