コード例 #1
0
ファイル: MockIAP.cs プロジェクト: lhanneman/windows-phone
        public static void ClearCache()
        {
            StateInformation.ClearCache();
            var rs = new MockReceiptStore();

            rs.ClearStore();
        }
コード例 #2
0
ファイル: MockIAP.cs プロジェクト: aunymoons/AIExperiment
        public static void ClearCache()
        {
            StateInformation.ClearCache();
            var rs = new MockReceiptStore();

            foreach (var lic in _appLicenseInformation.ProductLicenses.Values)
            {
                lic.IsActive = false;
            }
            rs.ClearStore();
        }