StartProcessConfig.cs 396 B

12345678910111213141516171819202122232425262728
  1. using System.ComponentModel;
  2. namespace ETModel
  3. {
  4. public partial class StartProcessConfigCategory : ISupportInitialize
  5. {
  6. public void EndInit()
  7. {
  8. }
  9. }
  10. public partial class StartProcessConfig: ISupportInitialize
  11. {
  12. public string InnerAddress;
  13. public void BeginInit()
  14. {
  15. }
  16. public void EndInit()
  17. {
  18. this.InnerAddress = $"{this.InnerIP}:{this.InnerPort}";
  19. }
  20. }
  21. }