OpenNETCF Question

  • Thread starter Thread starter Yosh
  • Start date Start date
Y

Yosh

I am new to using the Smart Device Framework v1.2.

In the framework, I am using the OpenCFNET.Net.CommunicationManager class. When I run the following code below I get the exception "An unhandled exception of type 'System.MissingMethodException' occurred in ConnectionManager.exe."

OpenNETCF.Net.ConnectionManager cm = new ConnectionManager();

OpenNETCF.Net.DestinationInfoCollection col = cm.EnumDestinations();

Can someone please help me understand why I am getting this error.

Thanks!
 
I was able to figure out my problem. Please disregard post and thank you!
I am new to using the Smart Device Framework v1.2.

In the framework, I am using the OpenCFNET.Net.CommunicationManager class. When I run the following code below I get the exception "An unhandled exception of type 'System.MissingMethodException' occurred in ConnectionManager.exe."

OpenNETCF.Net.ConnectionManager cm = new ConnectionManager();

OpenNETCF.Net.DestinationInfoCollection col = cm.EnumDestinations();

Can someone please help me understand why I am getting this error.

Thanks!
 
For reference ConnectionManager only exists on Windows Mobile (Pocket PC and
Smartphone) devices, so using the wrapper in OpenNETCF.Net will fail with
MissingMethodException on other platforms.

Peter

--
Peter Foot
Windows Embedded MVP
http://www.inthehand.com | http://blog.opennetcf.org/pfoot/

I was able to figure out my problem. Please disregard post and thank you!
I am new to using the Smart Device Framework v1.2.

In the framework, I am using the OpenCFNET.Net.CommunicationManager class.
When I run the following code below I get the exception "An unhandled
exception of type 'System.MissingMethodException' occurred in
ConnectionManager.exe."

OpenNETCF.Net.ConnectionManager cm = new ConnectionManager();
OpenNETCF.Net.DestinationInfoCollection col = cm.EnumDestinations();
Can someone please help me understand why I am getting this error.
Thanks!
 
I'm trying to figure out how to programatically establish a network
connection via an AIRCARD550 on a CE.NET platform. The cellcore.dll is not
present. Do you have any suggestions or pointers to where I can look to find
how to do this? I would think there should be an API call to connect a
connection from the 'Network and Dialup Connections', but I haven't been
able to find anything on this.
 
Back
Top