27 lines
506 B
C#
27 lines
506 B
C#
|
using System.ComponentModel;
|
||
|
using System.Net;
|
||
|
|
||
|
namespace ET
|
||
|
{
|
||
|
public partial class StartProcessConfigCategory
|
||
|
{
|
||
|
public override void EndInit()
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public partial class StartProcessConfig : ISupportInitialize
|
||
|
{
|
||
|
public IPEndPoint InnerAddress;
|
||
|
|
||
|
public void BeginInit()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public void EndInit()
|
||
|
{
|
||
|
this.InnerAddress =NetworkHelper.ToIPEndPoint( $"{this.InnerIP}:{this.InnerPort}");
|
||
|
}
|
||
|
}
|
||
|
}
|