Send Method
Send data to the remote host.
Syntax
[VB.NET] Public Sub Send(ByVal Text As String)
[C#] public void Send(byte[] text);
Remarks
Calling this method is equivalent to setting the DataToSend property to Text.
Example (Send Data)
UDPPortControl.LocalPort = 8765
UDPPortControl.RemotePort = 8765
UDPPortControl.RemoteHost =
"HostNameOrIPAddress"
UDPPortControl.Active = True
UDPPortControl.Send(
"Hello!"
)