Niels Swimberghe

Results 119 comments of Niels Swimberghe

Here's a tutorial on deploying Blazor to GitHub pages: https://swimburger.net/blog/dotnet/how-to-deploy-aspnet-blazor-webassembly-to-github-pages

PR added for your convenience: #612 --- Update: The new signature can cause ambiguous constructor signature issues into existing code bases. Since this would be another breaking change, I think...

Here's some more ideas: ```csharp var voiceResponse = new VoiceResponse() .Gather( input: InputEnum.Dtmf + InputEnum.Speech ); var voiceResponse = new VoiceResponse() .Gather( input: InputEnum.Dtmf & InputEnum.Speech ); var voiceResponse =...

FYI, for VB .NET, you could do this ```vb Dim gather = new Gather( input := {Voice.Gather.InputEnum.Speech} ) ``` Instead of this ```vb Dim gather = new Gather( input :=...

Extension added at Extension published at https://marketplace.visualstudio.com/items?itemName=DavidProthero.ngrokextensions-2022

Extension published at https://marketplace.visualstudio.com/items?itemName=DavidProthero.ngrokextensions-2022

Thank you for the PR!!!

I'm trying to make the validator more efficient and stumbled on the related issue and your PR. Your changes also make the code more efficient, so I'm considering [pulling your...

Quick question, would the validator still be thread safe if it implements `IDisposable` and is used as a singleton? I'm wondering what the most efficient way would be.

Thank you for the clarification!