System.Net.Sockets.UdpClient.CreateClientSocket C# (CSharp) 메소드

CreateClientSocket() 개인적인 메소드

private CreateClientSocket ( ) : void
리턴 void
        private void CreateClientSocket()
        {
            // Common initialization code.
            //
            // IPv6 Changes: Use the AddressFamily of this class rather than hardcode.
            _clientSocket = new Socket(_family, SocketType.Dgram, ProtocolType.Udp);
        }
    }