Friday, March 14, 2014

Important Packages In App Development

Important packages in app development from prabathsl...

Working with LiveSDK

Live SDK enables you to make connect users in to Live account.As a developer you can access each logged usersContacts. Calender.Sky drive (one drive).In this post i'm gonna explain how to use Live SDK and demo about how to get Contacts :) Here we go,First You need to have Live AppTo create live app goto  http://msdn.microsoft.com/en-US/live/  and in there in My Apps tab create your own app .. We need CLIENT_ID for our Mobile Application.Installing...

Monday, March 10, 2014

Making HTTP Post Request

Here is the correct way to send POST using HTTP Client.csharpcode, .csharpcode pre { font-size: 13.3333px; font-width: 400; color: black; font-family: "Courier New"; } .csharpcode pre { margin: 0px; } .csharpcode .comment { color: #008000; } .csharpcode .comment2 { color: #808080; } .csharpcode .type { color: #2B91AF; } .csharpcode .keyword { color: #0000FF; } .csharpcode .string { color: #A31515; } .csharpcode .preproc { color: #0000FF; } var client = new HttpClient(); var postData = new List<KeyValuePair<string, string>>();...

Sunday, March 2, 2014

Working with JSON and HTTP requests

In this post I'm gonna demonstrate how to working with HTTP requests and JSON in Windows Phone and Windows store Applications.I'm demonstrating Windows Phone App here, there is no different withe method if you are in the Windows Store app either.1. Create new Windows phone App. I'm using default Windows Phone Data bound App template here. 2. Then Go to the ViewModels -> MainViewModel in the Solution Explorer and find the public void LoadData()and...