Bind() 정적인 개인적인 메소드

static private Bind ( LibuvSharp.Handle handle, bind bind, bind6 bind6, IPAddress ipAddress, int port, bool dualstack ) : void
handle LibuvSharp.Handle
bind bind
bind6 bind6
ipAddress System.Net.IPAddress
port int
dualstack bool
리턴 void
예제 #1
0
        void Bind(IPAddress ipAddress, int port, bool dualstack)
        {
            CheckDisposed();

            UV.Bind(this, uv_udp_bind, uv_udp_bind, ipAddress, port, dualstack);
        }