Stijn Herreman

Results 22 comments of Stijn Herreman

Regarding the SO tags: a tag cannot exist without any question using it. A tag is created by adding it while posting a question or when editing a question. I'm...

That's a quick response :) I'll be looking forward to future releases. I might open pull requests in the future, but I've only started working with CsQuery today so I'm...

Is it possible to help you with this? I'm particularly interested in the new (or improved?) multipart support described in the spec, it'll allow adding API methods that take `multipart/mixed`...

Due to priority changes in our project I won't be able to spend time on this for now, unfortunately. Perhaps in a couple months, if help is still needed.

I agree with OP. Consider the following method, with WrapResponses enabled: ```c# [HttpHead] [Route("api/foos/{id}")] [SwaggerResponse(HttpStatusCode.OK, typeof(void))] [SwaggerResponse(HttpStatusCode.NotFound, typeof(void))] public async Task Head(string id) { var fooExists = await this.fooRepository.Exists(id); if...

I think this being an edge case with a workaround available, caused the discussion to die down for now. I think there are lots of other more important things that...

> That sounds like a _much_ more maintainable solution @jnyrup Just a small note: the [System.Linq.Async](https://www.nuget.org/packages/System.Linq.Async) package provides `ToListAsync()` and more.

I've taken a stab at this but quickly ran into a problem. Here's a simple interceptor, based on the Knockout documentation: ``` typescript function extender(target: KnockoutObservable): KnockoutObservable { var interceptor...

To make the window appear, you can hover the thumbnail in the taskbar, right click, and click on _Maximize_: ![image](https://user-images.githubusercontent.com/1618054/37836505-e7ec4bf6-2eb2-11e8-855c-fb96ee7a5a5f.png) When you unmaximize the window again (e.g. by dragging the...

We process user-submitted data, and for some procedures we snap geometries to allow for tiny inaccuracies in the data. I ran into this issue with real data by coincidence, where...