UDP: Client sends packets to, and receives packets from, a server : UDP Client « Network Remote « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Development
8.Event
9.File Directory
10.Generics
11.GUI
12.Language Basics
13.LINQ
14.Network Remote
15.Security
16.Thread
17.Windows Presentation Foundation
18.Windows System
19.XML
20.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Network Remote » UDP ClientScreenshots 
UDP: Client sends packets to, and receives packets from, a server

Imports System.Threading
Imports System.Net.Sockets
Imports System.IO
Imports System.Net


Public Class MainClass
   Shared Dim client As UdpClient
   Shared Dim receivePoint As IPEndPoint


   Public Shared Sub Main()
      receivePoint = New IPEndPoint(New IPAddress(0)0)

      client = New UdpClient(5001)

      Dim thread As Thread = New Thread(New ThreadStart(AddressOf WaitForPackets))

      thread.Start() 


         Dim packet As String = "client"

         Console.WriteLine("Sending packet containing: ")

         Dim data As Byte() = System.Text.Encoding.ASCII.GetBytes(packet)

         client.Send(data, data.Length, "localhost"5000)

         Console.WriteLine("Packet sent")
         
   End Sub
   
   Shared Public Sub WaitForPackets()
      While True
         Dim data As Byte() = client.Receive(receivePoint)
         Console.WriteLine("Packet received:" & _
            vbCrLf & "Length: " & data.Length & vbCrLf & _
            System.Text.Encoding.ASCII.GetString(data))

      End While

   End Sub ' WaitForPackets
   
End Class


           
       
Related examples in the same category
1.Set up a client that reads and displays data sent from server
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.