namespace PlcSiemens.O
{
public interface IIsoSender
{
///
/// 不含ISO头的请求
///
///
///
///
///
TResponse Send(TRequest request)
where TResponse : IBuildResponse, new()
where TRequest : IBuildRequest, new();
///
/// 包含ISO头的请求
///
///
///
///
///
TResponse IsoSend(TRequest request)
where TResponse : IBuildResponse, new()
where TRequest : IBuildRequest, new();
}
}