Bind() static private method

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
return void
Beispiel #1
0
        void Bind(IPAddress ipAddress, int port, bool dualstack)
        {
            CheckDisposed();

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