Showing results for async - .NET Blog

Jan 13, 2011
Post comments count1
Post likes count4

await anything;

Stephen Toub - MSFT
Stephen Toub - MSFT

One of the very cool things about the new await keyword in C# and Visual Basic is that it’s pattern based.  It works great with Task and Task<TResult>, and awaiting those two types will represent the vast majority of uses, but they’re by no means the only types that can be awaited.  The languages support awaiting any ins...

.NET Parallel Programming
Jan 13, 2011
Post comments count2
Post likes count5

Await, and UI, and deadlocks! Oh my!

Stephen Toub - MSFT
Stephen Toub - MSFT

It’s been awesome seeing the level of interest developers have had for the Async CTP and how much usage it’s getting.  Of course, with any new technology there are bound to be some hiccups.  One issue I’ve seen arise now multiple times is developers accidentally deadlocking their application by blocking their UI thread, ...

.NET Parallel Programming
Nov 21, 2010
Post comments count0
Post likes count1

Processing Sequences of Asynchronous Operations with Tasks

Stephen Toub - MSFT
Stephen Toub - MSFT

Of late, I’ve seen multiple folks asking about how to use tasks to asynchronously execute a sequence of operations.  For example, given three synchronous functions: public string DoA(string input); public string DoB(string aResult); public string DoC(string bResult); you could invoke these functions with code like: strin...

.NET Parallel Programming
Oct 28, 2010
Post comments count0
Post likes count0

TPL Dataflow preview available for download

Stephen Toub - MSFT
Stephen Toub - MSFT

As mentioned here, the Visual Studio Async CTP is now available for download from https://msdn.com/vstudio/async.  Not only does this download add language support into C# and Visual Basic for writing asynchronous methods (in which you can easily “await” tasks), it also includes a new .NET library we lovingly refer to as “TPL...

.NET Parallel Programming
Oct 27, 2010
Post comments count0
Post likes count0

Language support for Tasks!

Stephen Toub - MSFT
Stephen Toub - MSFT

Today is a very exciting day for Parallel Extensions, and indeed for all developers using C# and Visual Basic and who are interested in writing more responsive and scalable applications. At the PDC this morning, Anders Hejlsberg just announced the Visual Studio Async CTP, which you can download immediately from the landing page at https://msdn.com/...

.NET Parallel Programming
May 10, 2006
Post comments count0
Post likes count0

Custom validation schema video on Channel 9

Web Development Tools Microsoft
Web Development Tools Microsoft

In this DevNugget, .net Developer Evangelist G. Andrew Duthie (aka *.net DEvHammer), shows you how you can quickly and easily create and register a custom XSD schema that allows get Intellisense and validation of your schema within the Web Form source view window.* https://channel9.msdn.com/ShowPost.aspx?PostID=191714   Thanks

ASP.NET