For issues relating to development with C#, version 5.0.

learn more… | top users | synonyms

1
vote
1answer
13 views

C# 5.0 async : an entry point cannot be marked with the 'async' modifier

I copied below code from this link.But when I am compiling this code I am getting an entry point cannot be marked with the 'async' modifier.How I can make this code compilable. Thanks in advance ...
1
vote
1answer
44 views

Why is code launched on threadpool (via Task.Run) slower than the same code run in BackgroundWorker?

I have several calculator classes that perform custom calculations. Historically methods of these classes have been launched via BackgroundWorker, because they were lengthy, run-time wise. Recently I ...
1
vote
1answer
36 views

XmlWriter async methods

I have found example of async using of XmlWriter within msdn documentation http://msdn.microsoft.com/en-us/library/system.xml.xmlwriter.aspx async Task TestWriter(Stream stream) { ...
5
votes
2answers
74 views

A good solution for await in try/catch/finally?

I need to call an async method in a catch block before throwing again the exception (with its stack trace) like this : try { // Do something } catch { // <- Clean things here with async ...
2
votes
1answer
41 views

How to await a method in a Linq query

Trying to use the await keyword in a LINQ query and I get this: The 'await' operator may only be used in a query expression within the first collection expression of the initial 'from' clause or ...
-1
votes
1answer
47 views

How to get all exceptions from all nested tasks of async/awaited parent?

Re-using slightly modified code from this answer, how to modify it in order to implement @svick's advice: But if you save the Task into a variable and call task.Exception.Flatten(), that will ...
-2
votes
0answers
20 views

Create desktop application for listen online radio [closed]

I need to create application for listen online radio(internet) in this link http://www.goldfm.lk/onair.html Currently I don't have any idea about it. Hoe can i do it? Any codes will help. Im using C# ...
-1
votes
0answers
38 views

Which standard library methods have async variants? [closed]

Which standard library methods in .NET 4.5 have an async variant? For example in .NET 4 there was WebRequest.GetResponse . In .NET 4.5 there's also WebRequest.GetResponseAsync Is there a ...
0
votes
0answers
49 views

How to use async Task and await [closed]

My main goal here is to apply multithreading to each function call, because of how heavy the processing is for each static call. I have a few function that utilize the drawing, graphics, and each one ...
1
vote
1answer
42 views

AggressiveInlining Affects C# async Methods Behaviour

I have a static field of type ConcurrentQueue: static readonly ConcurrentQueue<int> q = new ConcurrentQueue<int>(); and an async method: static async Task<int?> NextNum() { ...
1
vote
2answers
43 views

Default TaskCreationOptions in Task.Run

Why the default value for CreationOptions of a Task created using Task.Run is DenyChildAttach rather than None? Has it anything to do with making work with the new async and await in C# 5.0 simpler ...
2
votes
2answers
93 views

Invoking a Multi-Threaded DLL at Run-Time

All, I call a .NET DLL containing a WinForm at run-time from a WinForm C# application. To do this I use the following: DLL = Assembly.LoadFrom(strDllPath); classType = ...
0
votes
1answer
84 views

JQuery example for calling SignalR Async Task

Does anyone have a working example of a JQuery based client calling an async task based method on a SignalR Hub? See the code below from the SignalR Doco for an example of a server side async task. ...
2
votes
2answers
44 views

What is the best way to return completed Task?

What is the best way to return a completed Task object? It is possible to write Task.Delay(0), or Task.FromResult<bool>(true) whatever. But what is the most efficient way?
1
vote
1answer
60 views

Thoughts on Entity Framework 5 and Multi-Threading

I am writing a WinForms application using Visual Studio 2012 in C# (.NET 4.5) with Entity Framework 5.0 and SQL Server 2008. Currently, I am using one database context for each form. Each form ...
4
votes
1answer
161 views

Is this C# code legal?

I have A.Test() declared as public virtual and B.Test() declared as private new. I'm calling base.Test() from C that inherits B. This code compiles with Mono 2.10.2 but throws a ...
0
votes
1answer
46 views

Merge video files in WinRT application

I need to combine two video streams in to one movie with up to two videos arranged together in a square in a Metro Style Application. Unfortunately, DirectShow does't be used in WinRT to do this job. ...
0
votes
2answers
65 views

await Task.Delay(…) freezes if there exists a System.Windows.Forms.Form instance

The following program hangs on the DoTheStuff().Wait(); line, if running as a Console application: namespace Test { using System.Threading.Tasks; using System.Windows.Forms; class ...
10
votes
1answer
189 views

Captured Closure (Loop Variable) in C# 5.0

This works fine (means as expected) in C# 5.0: var actions = new List<Action>(); foreach (var i in Enumerable.Range(0, 10)) { actions.Add(() => Console.WriteLine(i)); } foreach (var act ...
3
votes
1answer
49 views

Questions regarding Task Programming

What are the main differences between the following conventions. First: Task myTask = new Task(()=> { // executable statements }); myTask.Start(); Second: Task.Run(()=> { // ...
-1
votes
1answer
37 views

Wifi Access point control [closed]

Hello I wan to ask that how can i create a web application on .net that it can control the access of my wifi point. suppose A is the wifi router and B is the application server and c is the user If ...
2
votes
2answers
60 views

How to use async/await with a library that uses an event-based asynchronous pattern?

I use a library that has an asynchronous method called DoWork(...) that will raise a WorkDone event when the operation completes. I would like to write a method that calls this library, but instead ...
0
votes
1answer
49 views

Metro UI not update

I'm just start working on metro app and i'm facing a problem that is dispatcher not updating the UI. My code is below please let me know what was the issue ? public class Test : DependencyObject { ...
1
vote
1answer
38 views

HTTPContext in multiple await scenario

I am writing some MVC4 async controller code, and am getting an issue whereby I call out to two long running web services asynchronously, and the second of the calls appears to be on the wrong thread. ...
1
vote
2answers
47 views

Calling an async method with c#5.0

I do some tests with the new asynchronous pattern of C# 5.0 (async/await) I have a problem with understanding how the asynchronous methods are called. Considering this code : private async ...
3
votes
2answers
140 views

with MVC 4.0, RedirectToAction does not render PartialView as Partial, it send a whole page

I got something a little complicated, but I don't see why it would not work: I have a JSTree in my Index.cshtml. When a node is selected, I make an Ajax call to public async Task<ActionResult> ...
0
votes
1answer
83 views

Synchronously run a task in the same thread (no threadpool) with a timeout

I want to use Task<> type, but not with TPL, but with .NET4.5/C#async instead. Thing is, I have some requirements for my case: I want the task to be run synchronously (some people recommend ...
1
vote
2answers
216 views

Asynchronous Programming with Async and Await

I'm walking through this tutorial on how to program asynchronously in c# and have come across an error I'm not sure how to resolve. Here's the link: ...
3
votes
1answer
148 views

How do you create a Async Method in C# 5

Every blog post I've read tells you how to consume an async method in C# 5, but for some odd reason never explain how to build your own async methods to consume. So I have this code right now that ...
6
votes
1answer
62 views

How can I handle an interface method that may or may not be async?

I am attempting to create a serialization interface (similar to Cocoa's NSCoding protocol) so that I can get a quick binary representation of a class to send across a network or store in a database. ...
1
vote
2answers
121 views

Async and Await in nested call. Not awaiting on a method which does an await causing IIS crash

I've been looking online and am have some questions that hopefully someone here can answer for me. I'm trying to solve a problem that's caused IIS crashes for us. This service call is supposed to be ...
0
votes
1answer
37 views

Task.Run freezing

Can anyone educate me why the following freezes after completing the lambda: return await Task.Run(() => { return SuperLongMethod(); }) ...yet the following ...
0
votes
1answer
64 views

How to get data of the Task with await keyword?

I just need in main code get FlowDocument... I do like this but no success this.flowDoc = engine.CreateFlowDocument(contentItems); // Can't compile public async Task<FlowDocument> ...
1
vote
1answer
176 views

Using ASP.NET Web API, my ExecutionContext isn't flowing in async actions

I'm having difficulty understanding the mechanics behind ExecutionContext. From what I've read online, context-sensitive items such as security (Thread Principal), culture, etc, should flow across ...
1
vote
1answer
69 views

Why does an async function without an await result in a compiler warning?

Can anyone explain why async functions in c# 5 are required to have at least 1 await? I can't find a clear reason/explaination. By required, I mean that the compiler warns when an async function ...
2
votes
2answers
63 views

TaskEx.WhenAll and Exceptions

I'm constrained to using the .NET 4.0 framework and Async CTP Extensions to do something like the following: var dataTasks = _tasks.Select(t => t.GetData(keys)); var results = ...
2
votes
0answers
82 views

Equivalence or conversion matrix between .NET 4.0 Async CTP terms and their .NET 4.5 analogs?

I am using Async CTP (Version 3) + SP1 to it for developing and testing in Visual Studio 2010 SP1 on Windows XP SP3 mainly because my clients (as well as I) are on Windows XP SP3. See related topics: ...
-2
votes
1answer
54 views

Can I use update with inner join?

I want to use update for any record and all records of my table that column1 <> column2 my command is : update table1 set name = (select name from table2 where code1 ...
1
vote
1answer
58 views

Is this code synchronous as I want it to be?

I have this code public async Task<IEnumerable<WebResult>> SearchAsynch(string query) { if (query == null) { throw new ArgumentNullException("query cannot be null"); } ...
2
votes
1answer
114 views

Debugging Async/Await (Call Stack)

I use the Async/Await to free my UI-Thread and accomplish multithreading. Now I have a problem when I hit a exception. The Call Stack of my Async parts allways starts with ThreadPoolWorkQue.Dipatch(), ...
0
votes
0answers
74 views

New Thread inside a Thread in WinRT

I am performing certain functionality in a ThreadPool. Inside this thread, linq qery will be executed. This takes more time because, in that query selects a collection of my class also has a bool ...
-1
votes
1answer
77 views

Async method failing when called

I have this method public class WebSearcher : IWebSearcher { private static readonly string _rootUri; private static readonly BingSearchContainer _bingContainer; private static readonly ...
0
votes
2answers
111 views

A code example illustrating the difference between the paradigms of async/await and Reactive (Rx) extension?

Both the System.Reactive extension for .NET and new C# 5.0 (.NET 4.5) async/await pursue (or based on) future and promises constructs paradigm (approach). Can you give the (*) simplest C# code ...
0
votes
4answers
64 views

Where is the return statment for the Task object?

The following code compiles and runs well. But where is the return statement for the Consumer() and Producer() methods? class Program { static BufferBlock<Int32> m_buffer = new ...
1
vote
1answer
134 views

What are the major risks vs. benefits of using VS2010 Async CTP?

I'd like to use Visual Studio Async CTP (Version 3) for developing and testing in VS2010 SP1 on Windows XP SP3 mainly because my clients (as well as I) on Windows XP SP3. Ghere is a related discussion ...
3
votes
3answers
58 views

How to determine which thread a method will executes on when using TPL?

I know that the TPL is task-oriented, while the classic threading model is worker-oriented. Tasks let you focus primarily on what problem you want to solve instead of on the mechanics of how it will ...
1
vote
1answer
101 views

TPL Dataflow: What's the difference between these 2 code snippets?

I am studying the TPL Dataflow. Belwo are 2 pieces of code snippet from the official document Stephen Toub. Introduction to TPL Dataflow (TPLDataflow.docx) . But I am not fully getting what's the ...
1
vote
1answer
57 views

Registering async factory in Autofac

I have a Wallet class that I get from a repository. I'm trying to properly register both in Autofac so classes using the wallet could have a proper instance injected. The problem is that the ...
0
votes
0answers
139 views

how to convert sync SQL server database call to task-based asynchronous call in ASP.Net C# non-MVC?

I currently have working code which retrieves data from a SQL Server 2012 and then passes it on to JavaScript to populate a web page. Here's my current page load: protected void Page_Load(object ...
-1
votes
1answer
56 views

Re-Writing ordinary methods with async and await [closed]

i am using a method structure like this in my application, public void BiginAuthenticate() { if (condtion == true) PerformSecondLevelAuthenitcation(); } public void ...

1 2 3 4 5 6