Krzysztof Łabuś
Krzysztof Łabuś
Is there any chance to solve this issue? It is impossible to use constructor arguments for controllers (when we're using custom service as a controller) right now.
Right now I'm working on a project with few dozen of C# contract classes (input/output DTOs for WebAPI) divided into serveral namespaces. I'm using `GlobalConfigurationBuilder.UseModules()` therefore RT generates a separate...
Yeah, once you create a `HttpClient` instance you cannot change its `HttpMessageHandler`, and that's actuallny not a bad design. Your hacky solution won't work. This code will overwrite only **local**...
Any chance to resolve somehow this issue? ;-)
Any update? This issue concerns me as well. Some `event` triggered on `State` change would be useful.
Any chance for Linux support? What's stopping us from doing it?
A work-around is proposed here #11
Yeah, this is why I've called it `UseExternalClient()` ;-) It's a little more difficult to provide a single "generic" linux binary for Redis. That's why I thought the use of...
Any update? :)
> Most specialized ShouldBe overloads do not support null arguments by design. I find that a bit counterintuitive. ```csharp string[] myColl = new[] { "a", "b" } ; myColl.ShouldBe(null); //...