I add an application to the Windows store. When I download and run application, everything goes alright, but when some people download and run application, so throw the exception.
Třída není zaregistrována == Class not registered
There is code:
try
{
StoreContext storeContext = Windows.Services.Store.StoreContext.GetDefault();
string[] productKinds = {"Durable", "Consumable", "UnmanagedConsumable" };
List<String> filterList = new List<string>(productKinds);
queryResult = await storeContext.GetAssociatedStoreProductsAsync(filterList);
}
catch (Exception ex)
{
MessageDialog(ex, "UpdateDatabaze");
}
Anyone who know how I might resolve this exception?
