ExtensionMethods.RequestAsync Method (Udp.UdpPeer, Byte[], IPEndPoint, Int32)

Tungsten Suite

ExtensionMethodsRequestAsync Method (UdpUdpPeer, Byte, IPEndPoint, Int32)

Sends a request to a Udp peer and waits for a response. Can be used along with, or in lieu of, the regular method of calling Write and handling the BytesReceived event.

Namespace:  W.Net
Assembly:  Tungsten.Net (in Tungsten.Net.dll) Version: 2.0.2
Syntax
C#
public static Task<byte[]> RequestAsync(
	this UdpUdpPeer peer,
	byte[] request,
	IPEndPoint remoteEndPoint,
	int msTimeout
)

Parameters

peer
Type: W.NetUdpUdpPeer
The W.Net.Udp.UdpPeer instance
request
Type: SystemByte
The request to be made to the server
remoteEndPoint
Type: System.NetIPEndPoint
The IPEndPoint of the remote Udp peer
msTimeout
Type: SystemInt32
The time to wait for a response

Return Value

Type: TaskByte
Null if a timeout occurs, otherwise the server's response

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type UdpUdpPeer. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also