From fd096f52677615d8e25ac475927280424a046c29 Mon Sep 17 00:00:00 2001 From: Tobias Klika Date: Fri, 3 Apr 2015 01:02:53 +0200 Subject: [PATCH] start multi-culture implementation --- src/OnePeek.Api/AppMetadataEndpoint.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/OnePeek.Api/AppMetadataEndpoint.cs b/src/OnePeek.Api/AppMetadataEndpoint.cs index 4776299..b156fff 100644 --- a/src/OnePeek.Api/AppMetadataEndpoint.cs +++ b/src/OnePeek.Api/AppMetadataEndpoint.cs @@ -50,7 +50,7 @@ namespace OnePeek.Api { IEnumerable childs = x.Descendants(); return new AppImage() - { + { Urn = childs.Get("id"), Rotation = childs.GetShort("orientation") }; @@ -75,5 +75,12 @@ namespace OnePeek.Api Uri uri = EndpointUris.GetWindowsPhoneImageUri(urn, type); return await ApiHttpClient.Instance.GetStream(uri); } + + + + public async Task>> GetMetadataForAllCultures(string appId, StoreType store) + { + throw new NotImplementedException(); + } } }