All methods in Windows CE framework are executed synchronously.
The most of methods return an instance of the OperationResult class that contains the Success property specifying whether the method is executed successfully, and the Message property that contains description of error or information returned by the method.
namespace HyperHive.Models
{
public class OperationResult
{
public bool Success { get; private set; }
public string Message { get; private set; }
}
}
To initialize and set up WinCE, see the Initializing and Setting Up WinCE Framework section.
For details about WinCE framework methods see the Describing WinCE Framework Methods section.
To view examples of WinCE framework use, see the Examples of WinCE Framework Use section.
See also:
WinCE Framework | Initializing and Setting Up WinCE Framework | Describing WinCE Framework Methods | Examples of WinCE Framework Use