示例#1
0
文件: GXTypes.cs 项目: pngwei/TEST
 public CommunicationPortInfo(ChannelInfoType chlType, PortIconType portClass, bool isOpened, bool isConnected)
 {
     channelType     = chlType;
     portType        = portClass;
     isPortOpened    = isOpened;
     isPortConnected = isConnected;
 }
示例#2
0
文件: GXTypes.cs 项目: pngwei/TEST
 public CommunicationPortInfo(PortIconType portClass, bool isOpened, bool isConnected)
     : this(ChannelInfoType.Communication, portClass, isOpened, isConnected)
 {
 }