DatagramSocketMessageReceivedEventArgs class

Expand
This topic has not yet been rated - Rate this topic

DatagramSocketMessageReceivedEventArgs class

[This documentation is preliminary and is subject to change.]

Applies to: Metro style apps | desktop apps

Provides data for a MessageReceived event on a DatagramSocket.

Syntax


/* For information about creating or accessing this object, see Remarks. */

Attributes

DualApiPartitionAttribute()
GCPressureAttribute()
MarshalingBehaviorAttribute(Agile)
VersionAttribute(NTDDI_WIN8)

Members

The DatagramSocketMessageReceivedEventArgs class has these types of members:

Methods

The DatagramSocketMessageReceivedEventArgs class has these methods. With C#, Visual Basic, and C++, it also inherits methods from the Object class.

MethodDescription
GetDataReader Gets a DataReader object to read incoming data received from the remote network destination on a DatagramSocket object.
GetDataStream Gets an IInputStream object that represents a sequential stream of bytes to be read as a message from the remote network destination on a DatagramSocket object.

 

Properties

The DatagramSocketMessageReceivedEventArgs class has these properties.

PropertyAccess typeDescription

LocalAddress

Read-onlyGets the local IP address associated with a DatagramSocket when a message was received.

RemoteAddress

Read-onlyGets the IP address of the remote sender of the datagram on the DatagramSocket when a message is received.

RemotePort

Read-onlyGets the UDP port number of the remote sender of the datagram received on the DatagramSocket.

 

Remarks

The DatagramSocketMessageReceivedEventArgs is used to receive data on a DatagramSocket object.

The DatagramSocket.BindServiceNameAsync or DatagramSocket.BindEndpointAsync method is used to bind a DatagramSocket to a local service name or UDP port if a DatagramSocket instance wants to listen and receive data. These methods are not needed if the DatagramSocket is to be used only for sending data.

A DatagramSocket.MessageReceived event occurs on a DatagramSocket that has been bound to a local service name or UDP port when a message is received. A DatagramSocketMessageReceivedEventArgs instance is created when the DatagramSocket.MessageReceived event occurs.

There are two primary methods to read data when a message has been received:

  • The GetDataStream method returns a Streams.IInputStream object that represents a sequential stream of bytes in the received message. The app must then parse the received stream of bytes.
  • The GetDataReader method returns a Streams.DataReader object to read incoming data. The Streams.DataReader object has separate methods to read the data in a variety of formats including bytes, signed and unsigned integers, boolean values, single and double floating point numbers, strings, date time and time span values, GUIDs, and buffers. These methods can be used directly to parse the received message.

Requirements

Minimum supported client

Windows 8 Release Preview

Minimum supported server

Windows Server 2012

Namespace

Windows.Networking.Sockets
Windows::Networking::Sockets [C++]

Metadata

Windows.winmd

DLL

Windows.Networking.dll

See also

DatagramSocket
DatagramSocket.BindServiceNameAsync
DatagramSocket.BindEndpointAsync
DatagramSocket.MessageReceived
Streams.DataReader
Streams.IInputStream
Object

 

 

Build date: 5/22/2012

Did you find this helpful?
(1500 characters remaining)
Community Additions ADD