LocalNetworkGamer.ReceiveData Method (Byte[], NetworkGamer)

Reads the next incoming packet using the specified values.

Namespace: Microsoft.Xna.Framework.Net
Assembly: Microsoft.Xna.Framework.Net (in microsoft.xna.framework.net.dll)

Syntax

public int ReceiveData (
         byte[] data,
         out NetworkGamer sender
)

Parameters

Return Value

Number of bytes read from the network packet. Returns 0 if no packet is available.

Exceptions

Exception type Condition
ArgumentException The specified array is too small to receive the incoming network packet.
ArgumentNullException data is null.

Example

Be sure to call ReceiveData for all incoming data for all local gamers, even if the data is to be discarded. Any time data is sent to a local network gamer, the incoming data queue will grow until the data is read. If the data is not read using ReceiveData the performance of the application will degrade as the data queue grows in size.

foreach (LocalNetworkGamer gamer in session.LocalGamers)
{
    // Keep reading while packets are available.
    while (gamer.IsDataAvailable)
    {
        NetworkGamer sender;

        // Read a single packet.
        gamer.ReceiveData(packetReader, out sender);
        // Discard the data, or use packetReader.Read* to process the data.
    }
    gamer.SendData(packetWriter, SendDataOptions.None);
    
}

Remarks

ReceiveData copies the packet data into the array specified by data, returning the number of bytes read. If several independent packets are available, only one is returned for each ReceiveData call.

See Also

Tasks

Receiving Network Data

Reference

LocalNetworkGamer Class
LocalNetworkGamer Members
Microsoft.Xna.Framework.Net Namespace

Platforms

Xbox 360, Windows 7, Windows Vista, Windows XP