AWS News Blog

AWS SDK Support for Windows Phone and Windows Store Applications

Voiced by Polly

Tom Rizzo provides an update on AWS developer tools for Windows, and brings word of a Developer Preview of the next version of the AWS SDK for .NET.

— Jeff;


Over the last few months, we have released a number of enhancements to help customers and partners build their Microsoft Windows centric workloads on AWS.  Just last week, we announced guidance for running Exchange Server in the AWS Cloud which builds on our guidance for SQL Server and SharePoint.  When it comes to .NET developers, we have provided tools such as our AWS Toolkit for Visual Studio and the AWS SDK for .NET.  In fact, we recently started a .NET Development blog so Windows developers can get tips and tricks on how to best program .NET applications using AWS.

Our Microsoft tooling doesn’t stop there.  If PowerShell is what you use to automate Windows, we have the AWS Tools for Windows PowerShell.  We recently enhanced our PowerShell tools with automatic paging for large result sets and improved support for piping the output of a one cmdlet to another cmdlet.

Today, Im happy to announce the Developer Preview of the next version of our AWS SDK for .NET.  This release of the SDK adds two major enhancements for .NET developers.

The first is support for the Microsoft Windows Store and Windows Phone applications.  With the new SDK, you can connect your Windows Phone or Windows Store apps to AWS services and you can build a cross-targeted application that’s backed by AWS.  With this release, we add Windows Phone support to our growing SDK support for different mobile operating systems including our SDK for iOS and SDK for Android.

The other big enhancement is our support for the task-based asynchronous pattern.  This pattern uses the async and await keywords and makes programming asynchronous operations against AWS easy.  For example, you can now upload files to S3 asynchronously like this:

async Task UploadFile ( string bucketName, string filepath )
{
var s3Client = new AmazonS3Client ( ) ;
var request = new PutObjectRequest ( )
{
BucketName = bucketName,
FilePath = filepath
} ;

await s3Client.PutObjectAsync(request);
Console.WriteLine(“File Uploaded”);
}

Then this function could be called asynchronously like this:

await UploadFile (bucketName, filepath ) ;

This new asynchronous pattern is supported across all services so dont await (ok, bad asynchronous joke!). Give the Developer Preview of the new SDK a try, read the .NET developer blog and tell us how we cam better help you build.NET applications on AWS.

— Tom Rizzo, General Manager, Amazon EC2 Team

Modified 1/26/2021 – In an effort to ensure a great experience, expired links in this post have been updated or removed from the original post.

 

TAGS:
Jeff Barr

Jeff Barr

Jeff Barr is Chief Evangelist for AWS. He started this blog in 2004 and has been writing posts just about non-stop ever since.