|
|
@@ -88,6 +88,10 @@ namespace PLC_S
|
|
|
plcs.PLCServiceType = ini.Read("PLCService", "PLCServiceType");
|
|
|
plcs.AutoStart = ini.Read("PLCService", "AutoStart").ToBoolean();
|
|
|
plcs.Port = ini.Read("PLCService", "Port").ToInt32();
|
|
|
+
|
|
|
+ plcs.Interval = ini.Read("PLCService", "Interval").ToInt32();
|
|
|
+ plcs.EPTS_CODE = ini.Read("PLCService", "EPTS_CODE");
|
|
|
+
|
|
|
plcs.Description = ini.Read("PLCService", "Description");
|
|
|
plcs.DisplayName = ini.Read("PLCService", "DisplayName");
|
|
|
plcs.ServiceName = ini.Read("PLCService", "ServiceName");
|
|
|
@@ -102,6 +106,10 @@ namespace PLC_S
|
|
|
ini.Write("PLCService", "PLCServiceType", plcs.PLCServiceType);
|
|
|
ini.Write("PLCService", "AutoStart", plcs.AutoStart.ToString());
|
|
|
ini.Write("PLCService", "Port", plcs.Port.ToString());
|
|
|
+
|
|
|
+ ini.Write("PLCService", "Interval", plcs.Interval.ToString());
|
|
|
+ ini.Write("PLCService", "EPTS_CODE", plcs.EPTS_CODE);
|
|
|
+
|
|
|
ini.Write("PLCService", "Description", plcs.Description);
|
|
|
ini.Write("PLCService", "DisplayName", plcs.DisplayName);
|
|
|
ini.Write("PLCService", "ServiceName", plcs.ServiceName);
|