Top ".net-4.5" questions

Version 4.5 of the Microsoft .NET Framework.

Which versions of SSL/TLS does System.Net.WebRequest support?

Now that SSL 3 has been found to be vulnerable to the POODLE attack: Which versions of SSL/TLS does System.…

c# ssl .net-4.5 webrequest poodle-attack
What is the correct way to read a serial port using .NET framework?

I've read a lot of questions here about how to read data from serial ports using the .NET SerialPort class …

c# serial-port .net-4.5
Is it possible to run a .NET 4.5 app on XP?

First, I have read the following: Connect case VS case and especially this channel9 post So, from the last bullet, …

c# .net .net-4.0 compatibility .net-4.5
The type or namespace name 'System' could not be found

I have the following errors (and more) in all my views (*.cshtml) when opening my project in Visual Studio 2015 Professional. …

c# asp.net-mvc-5 visual-studio-2015 .net-4.5
async at console app in C#?

I have this simple code : public static async Task<int> SumTwoOperationsAsync() { var firstTask = GetOperationOneAsync(); var secondTask = GetOperationTwoAsync(); return …

c# .net-4.5 async-await c#-5.0
Awaiting multiple Tasks with different results

I have 3 tasks: private async Task<Cat> FeedCat() {} private async Task<House> SellHouse() {} private async Task&…

c# .net async-await task-parallel-library .net-4.5
How does Task<int> become an int?

We have this method: async Task<int> AccessTheWebAsync() { HttpClient client = new HttpClient(); Task<string> getStringTask = client.…

c# .net asynchronous .net-4.5 c#-5.0
Await operator can only be used within an Async method

I'm trying to make a simple program to test the new .NET async functionality within Visual Studio 2012. I generally use …

c# .net build .net-4.5 async-await
What's the difference between Task.Start/Wait and Async/Await?

I may be missing something but what is the difference between doing: public void MyMethod() { Task t = Task.Factory.StartNew(…

c# task-parallel-library .net-4.5 async-await conceptual
Async/await vs BackgroundWorker

In the past few days I have tested the new features of .net 4.5 and c# 5. I like its new async/…

c# task-parallel-library backgroundworker .net-4.5 async-await