Netronics.Netronics.Start C# (CSharp) Méthode

Start() public méthode

Netronics 를 시작하는 메소드
public Start ( ) : Netronics
Résultat Netronics
        public virtual Netronics Start()
        {
            if (Properties == null)
                return this;

            InitSocket();
            StartSocket();
            Properties.OnStartEvent(this, new StartEventArgs(Socket));

            return this;
        }

Usage Example

 public void Test1()
 {
     var netronics = new Netronics.Netronics(new Properties());
     netronics.Start();
     netronics.AddChannel(SocketChannel.CreateChannel(null));
     netronics.Stop();
 }
All Usage Examples Of Netronics.Netronics::Start