VB.Net - UDP Client Example

This code snippet demonstrates how to develop a simple UDP Client using the UdpClient class.

Module1

  1. Imports System.Net  
  2. Imports System.Net.Sockets  
  3. Imports System.Text  
  4.  
  5. Module Module1  
  6.  
  7.     Sub Main()  
  8.  
  9.         Dim udpClient As UdpClient  
  10.         Dim message() As Byte  
  11.  
  12.         Console.WriteLine("Client sending packet...")  
  13.         udpClient = New UdpClient()  
  14.         message = Encoding.Unicode.GetBytes("Hello")  
  15.         udpClient.Send(message, message.Length, "127.0.0.1", 5555)  
  16.  
  17.         Console.ReadKey()  
  18.     End Sub  
  19.  
  20. End Module 

No comments:

Post a Comment