Sic.Framework/MECF.Framework.Common/MECF/Framework/Common/Communications/IConnectionContext.cs

22 lines
341 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
namespace MECF.Framework.Common.Communications
{
public interface IConnectionContext
{
bool IsEnabled { get; }
int RetryConnectIntervalMs { get; }
int MaxRetryConnectCount { get; }
bool EnableCheckConnection { get; }
string Address { get; }
bool IsAscii { get; }
string NewLine { get; }
bool EnableLog { get; }
}
}