Read the Permissions used by an Application in Windows Phone 8 -
how can read programatically set of permissions being used application in windows phone 8?
you can read wmappmanifest.xml
file
private static void read() { string ret = string.empty; try { xelement xe = xelement.load("wmappmanifest.xml"); //look capabilities section here } catch { // ignore errors in case method called // design time in vs.net } }
http://weblogs.asp.net/psheriff/archive/2011/01/04/get-application-title-from-windows-phone.aspx
Comments
Post a Comment