Netronics.Netronics.AddSocket C# (CSharp) Method

AddSocket() public method

새로운 Socket를 Channel로 변환하고 추가하는 메소드
public AddSocket ( Socket socket ) : IChannel
socket Socket 추가할 Socket
return IChannel
        public virtual IChannel AddSocket(Socket socket)
        {
            var channel = AddChannel(Properties.GetChannelPipe().CreateChannel(this, socket));
            return channel;
        }

Same methods

Netronics::AddSocket ( EndPoint endPoint, IChannel>.Action action = null ) : void