Ben Foster

Results 32 issues of Ben Foster

I'm keeping our `ImapClient` alive and polling periodically for new messages with the following code: ``` public IEnumerable GetMessages() { foreach (var msgId in client.Search(SearchCondition.Unseen())) { var msg = client.GetMessage(msgId,...

Can you confirm whether you are sending the files in chunks or posting the entire file? In our server handler we are reading the input stream but only getting the...

[Secure Payment Confirmation](https://www.w3.org/TR/2021/WD-secure-payment-confirmation-20210831/) builds on top of WebAuthN and uses the Payment Request API to allow payments to be authenticated. I've been able to adapt the demo application to use...

Currently label values can only be provided before a timer is initialised (via `NewTimer()`). This means that when a label value is not known until the timed operation is complete...

I would like to test our instrumentation code which uses Prometheus metrics. Is there any way to retrieve the current value of a metric via the registry or some way...

A `MediatypeViewResultFormatter` with supported media type `text/html` should handle `text/html;q=0.7`. Ideally we would parse the quality value but as a minimum should change the matching logic to use string.contains: ```...

bug
enhancement

Should allow passing of serializer settings so we can, for example, return camelcased JSON.

enhancement

Helpers such as `Html.CheckBoxListFor` currently use `ExpressionHelper.GetExpressionText(expression)` to generate element names. This generates an incorrect name when using the helper within nested editor templates. E.g. Index.cshtml: `@Html.EditorFor(model => model.Other)` EditorTemplates/Other.cshtml...

bug