Sic.Framework-Nanjing-Baishi/MECF.Framework.Common/MECF/Framework/Common/Communications/StaticConnectionContext.cs

22 lines
459 B
C#
Raw Normal View History

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