Windows Phone 8 Kochbuch

Mit Windows Phone 8 wird die Microsoft Plattform mobil. Microsoft geht mit Ihrem hauseigenen mobilen Betriebssystem in die zweite Runde. Dabei ist die aktuelle Version weitaus mehr als ein Update vorhandener Funktionen. Es handelt sich dabei um ein komplett überarbeites Betriebssystem, welches sich einen gemeinsamen Systemkern mit…

Windows Phone 8 - Asynchronous Webrequest

The Windows Phone 8 SDK provides the class WebRequest as well as the possibility to use async / await. But how ever there are no (extension) methods GetRequestStreamAsync and GetResponseAsync. The class WebRequest supports the asynchronous access via the old fashioned interface IAsyncResult of those functions. So you can build your own…

Windows Phone ParseQueryString

Von Zeit zu Zeit ist es erforderlich, einen QueryString mit .NET zu parsen. Hierfür stellt das .NET Framework die Funktion HttpUtility.ParseQueryString zur Verfügung. Unter Windows Phone 8 gibt es jedoch die Klasse HttpUtilitiy nicht. Aus diesem Grund habe ich die folgende kleine Hilfsklasse QueryString für die Verwendung unter Windows…