Results 79 comments of Mike Stall

One challenge we have beyond ASP.Net is that ASP.Net is http-specific; whereas our filters are trigger agnostic. So providing "400" on a QueueTrigger doesn't make sense. This feature is tied...

@paulbatum - likely not. There's 2 separate concepts here: 1. API-facing HTTP - public http surface area that require a significant amount of http customization (determining url, methods, routes, authentication...

(Nit, #1188 doesn't add a new regex - this is the same regex we've had since v1.0; it just changes how it's invoked). Here's the problem: In SDK: "^[A-Za-z][A-Za-z0-9]{2,62}$" In...

This is related to https://github.com/Azure/azure-webjobs-sdk-script/issues/1416. We should have a single regex (now in SDK) and portal uses that.

Can you give me a specific expression for Data? I can make that into a test case and fix.

RowsAs requires T be strongly typed so that it can infer the columns. It can't do that from dynamic. So this may be by-design, although we could have a better...

What is the expected result there? Other CSV readers (excel, powershell's import-csv) have trouble here too.

MutableDataTable is an array of column arrays. This makes it very easy to rearrange columns, but it means adding a new row is expensive since it means reallocating every column....

Would you like to submit a PR for this?

It’s probably not there just because nobody has added it yet. :) Can you give a code snippet demonstrating what you’d like to be able to do? From: Alexey [mailto:[email protected]]...