Showing archive results for 2012

Sep 12, 2012
Post comments count0
Post likes count0

Integrate OpenAuth/OpenID with your existing ASP.NET application using Universal Providers

pranav rastogi

Over the past couple of weeks I have come across lots of questions/discussions on while OAuth/OpenId is cool as a feature in the ASP.NET templates in Visual Studio 2012, but how do I easily integrate this into my application outside of the templates. More so how do I extend the Universal Providers to integrate OAuth/OpenId and use other functionali...

ASP.NET
Sep 11, 2012
Post comments count0
Post likes count1

Forking in async methods

Stephen Toub - MSFT

Given that .NET 4.5 has only recently been released in its final form, it’s not surprising that many folks are still very new to the async/await keywords and have misconceptions about what they are and what they do (I’ve tried to clarify some of these in this Async/Await FAQ).  One of the more common misconceptions is that a method...

.NET Parallel Programming
Sep 7, 2012
Post comments count0
Post likes count0

Recent Changes to Package Restore Consent

Howard Dierking

When we released NuGet 2.0, one of the changes included the addition of a privacy-related constraint to the package restore feature. More specifically, NuGet 2.0 required that you provide explicit consent, via either a checkbox in the package manager configuration dialog or an environment variable, before it would successfully download required pac...

NuGetVisual Studio
Aug 30, 2012
Post comments count0
Post likes count1

Getting Symbols and Source with ASP.NET Nightly NuGet Packages

Henrik F Nielsen

You can now get full symbols and source along with the nightly NuGet packages making it possible to debug the latest MVC, Web API, and Web Pages bits by tracing directly through the source. This is enabled by SymbolSource, which hosts the symbols and source for the nightly NuGet packages, and MyGet which hosts the nightly NuGet feed. Great services...

ASP.NET
Aug 28, 2012
Post comments count0
Post likes count2

Evolving the Reflection API

Brandon Bray

As many developers have noticed, the reflection APIs changed in the .NET API set for Windows Store apps. Much of .NET’s ability to offer a consistent programming model to so many platforms over the last ten years has been the result of great architectural thinking. The changes to reflection are here to prepare for the challenges over the next de...

.NET
Aug 26, 2012
Post comments count0
Post likes count1

List of ASP.NET Web API and HttpClient Samples

Henrik F Nielsen

Here is a list of the Web API and HttpClient samples you can find in our samples repository on aspnet.codeplex.com. They illustrate various features of Web API and HttpClient targeting either Visual Studio 2010 using .NET 4 or Visual Studio 2012 using .NET 4.5 with async/await language support. For details on how get up and running with the samples...

ASP.NET
Aug 24, 2012
Post comments count0
Post likes count0

Customizing the login UI when using OAuth/OpenID

pranav rastogi

In the last post I showed how you can plug in your own OAuth/OpenID provider. This post shows you how you can pass in extra data about the provider such as display name, image etc and use this information when building up the UI for login screen   If you see the experience of login screen in the ASP.NET templates, it looks like this. Let&...

ASP.NET
Aug 24, 2012
Post comments count0
Post likes count0

NuGet Feed Performance Update

Jeff Handley [MSFT]

As you might know, NuGet has been having some performance (and timeout) related issues recently. Earlier this week, we completed a deployment that helped, but it didn't address everything.Many users are still seeing slow responses or even timeouts when trying to use the ‘Manage NuGet Packages’ dialog in Visual Studio.Ongoing Investigati...

ASP.NET
Aug 24, 2012
Post comments count0
Post likes count0

Feed Performance Update

Jeff Handley

As you might know, NuGet has been having some performance (and timeout) related issues recently. Earlier this week, we completed a deployment that helped, but it didn't address everything. Many users are still seeing slow responses or even timeouts when trying to use the 'Manage NuGet Packages' dialog in Visual Studio. Ongoing Investigation The ...

NuGetIncident
Aug 23, 2012
Post comments count0
Post likes count0

Plugging custom OAuth/OpenID providers

pranav rastogi

In the previous post, I wrote about how you can use the existing providers for Google, Facebook etc. and retrieve extra metadata about the authenticated users. Let’s assume you wanted to change the way the providers request for information. Some examples of this could be This post covers how you can write your own provider and plug it in...

ASP.NET