I am developing a .NET Compact Framework Application by wanting to send data
from a pocketPC emulator to a devices via infrared.
In the code, they ask me to specific the Service Name.
Actually what is the servicename for? How am I going to specified it?
IrDAClient client = null;
int CurrentTries = 0;
do
{
try {
client = new IrDAClient(ServiceName);
// client.Connect();
}
catch(SocketException se) {
MessageBox.Show(se.Message);
if(CurrentTries < NumRetries) {
throw se;
}
}
}