Hi anandhienator
You can access this through c# code. The following code snippet will access the manifest file.
IXMLDOMDocument2 maniFest = (IXMLDOMDocument2)thisXDocument.CreateDOM();
maniFest.setProperty("SelectionNamespaces", "xmlns:xsf=\"http://schemas.microsoft.com/office/infopath/2003/solutionDefinition\"");
maniFest.load("manifest.xsf");
IXMLDOMNodeList roles = maniFest.selectNodes("/xsf:xDocumentClass/xsf:roles/xsf:role");
from the above line you can access the roles of user
Hope this helps you.
chandu
|