示例#1
0
 protected async static void GetFullAppInfoAsync(FullAppInfoHandler fullAppInfoCallback, bool isDebug)
 {
     ListingInformation listing;
     if (isDebug)
     {
         listing = await CurrentAppSimulator.LoadListingInformationAsync();
     }
     else
     {
         listing = await CurrentAppSimulator.LoadListingInformationAsync();
     }
     FullAppInfo appInfo = GetAppInfoFromListing(listing);
     fullAppInfoCallback(appInfo);
 }
示例#2
0
        public static void GetFullAppInfo(FullAppInfoHandler fullAppInfoCallback, bool isDebug)
        {

#if NETFX_CORE
            GetFullAppInfoAsync(fullAppInfoCallback, isDebug);
#endif

        }