Gábor Gergely

Results 15 comments of Gábor Gergely

For me reading technical books in paper/ebook is more effective than in a browser: There are less distractions. If I get stuck I can still go to a computer to...

Hi! Could you please publicate the AsyncOption - at least as a prerelease - NuGet package? It would come handy for me right now. Thx.

The following MSDN article suggests using `ConfigureAwait(false)` in libraries whenever possible. https://msdn.microsoft.com/en-us/magazine/jj991977.aspx I understand that sometimes it is not the desired default, but what I seen in my works is...

I gave up using Optional, partly for this (lack of proper async support), and also for the lack of covariance, which together held meg back more than they helped.

@nlkl we used Option in application code dealing with other microservices, and database, handling the possible failures, and also short-circuiting logic sometimes. After all the lack of covariance was not...

Those could also work. I also check the path sometimes while still tracking. The end (last sample?) would still be "flagged" this way while still tracking?

I like it. Actually whichever version gets implemented does not matter for me, as any of them solves my pain point.

Taking a quick look with _dotPeek_ to the assemly compiled from your branch and the official branch it can be confirmed, that mono may indeed be right: the assemby is...

The solution provided by @gideonkorir does work correctly when using manual routing, but when using MVC AttributeRouting the problem still exists. Version 2.6.0 contains the partial solution already. After some...

@gideonkorir if I understand correctly, then this approach would also have the benefit that non-mvc and mvc routing based collectors could be used simultenously and they could collaborate in providing...