RootObject user1=null; DataContractJsonSerializer serializer =new DataContractJsonSerializer(typeof(RootObject)); user1 = (RootObject)serializer.ReadObject(await response.Content.ReadAsStreamAsync()); Yukarıdaki kod ile Json objelerini kendi objelerime set edebiliyorum. Fakat aşağıdaki kodu bir şekilde çalıştıramıyorum.Nedeni nedir? JsonObject o = JsonObject.Parse(responseBodyAsText); TBox.Text = o["value"]; Aldığı hata ise şu: Cannot implicitly convert type 'Windows.Data.Json.IJsonValue' to 'string'
Bunuda çözdüm JsonObject o = JsonObject.Parse(responseBodyAsText); TBox.Text = o["value"].GetString(); olacakmış