This documentation is archived and is not being maintained.
IrDAEndPoint Class
Visual Studio 2008
Represents an endpoint for an infrared connection.
Assembly: System.Net.IrDA (in System.Net.IrDA.dll)
You can create an IrDAListener from an IrDAEndPoint, which is established with the device ID and service name.
| Topic | Location |
|---|---|
| How to: Make an Infrared File Transfer | .NET Compact Framework |
| How to: Make an Infrared File Transfer | .NET Compact Framework |
| How to: Make an Infrared File Transfer | .NET Compact Framework |
The following example creates a connection, with the IrDAEndPoint class, to a device and starts listening for infrared communication from that device with the IrDAListener class. This example is part of a larger example provided for the IrDAClient class.
' Create a connection, with the IrDAEndPoint class, ' for the selected device in the list box. ' Start listening for incoming requests from ' that device with an IrDAListener object. Try Dim i As Integer = ListBox1.SelectedIndex irEndP = New IrDAEndPoint(irDevices(i).DeviceID, irServiceName) irListen = New IrDAListener(irEndP) irListen.Start() Catch exSoc As SocketException MessageBox.Show("Couldn't listen on service " & irServiceName & ": " _ & exSoc.ErrorCode) End Try
Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: