This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using System.Threading;
using UPPLibs;
namespace CommService
{
/*
*类名称:struRequestInQueue
*创建人:韩荣伟
*创建时间:2010-10-30
*功能描述:请求结构类,用于请求与相应消息的匹配
*/
class struRequestInQueue
//帧信息
public struFrame frameInfo;
//帧字节串
public byte[] frameBytes;
//是否匹配
public bool bMatchOK;
//请求事件
public AutoResetEvent handleReqEvent;
//返回帧
public struFrame frameResp;
};
}