ConfigurationManager.ProcessConfiguration Method
Windows Mobile 6.5
3/29/2010
Sends a device configuration XML file to Configuration Manager for processing.
Namespace: Microsoft.WindowsMobile.Configuration
Assembly: Microsoft.WindowsMobile.Configuration (in microsoft.windowsmobile.configuration.dll)
Assembly: Microsoft.WindowsMobile.Configuration (in microsoft.windowsmobile.configuration.dll)
Parameters
- configDoc
The configuration document used to provision the device.
- metadata
true to return metadata associated with the XML parm elements in the new configuration; otherwise, false. If false, then configDoc is returned.
Return Value
If metadata was not requested, ProcessConfiguration simply returns the original device configuration XML file - but if metadata was requested, then ProcessConfiguration returns the original device configuration XML file, but with additional XML markup that describes any processing errors.This example shows how to call ProcessConfiguration to set a new Browser Favorite in Internet Explorer Mobile.
XmlDocument configDoc = new XmlDocument();
configDoc.LoadXml(
"<wap-provisioningdoc>"+
"<characteristic type=\"BrowserFavorite\">"+
"<characteristic type=\"Microsoft\">"+
"<parm name=\"URL\" value=\"http://www.microsoft.com\"/>"+
"</characteristic>"+
"</characteristic>"+
"</wap-provisioningdoc>"
);
ConfigurationManager.ProcessConfiguration(configDoc, false);