Stef Heyenrath

Results 115 issues of Stef Heyenrath

**Description** I've defined a query parameter on an interface like this: ``` C# public interface IApi { [Query("api-version")] string ApiVersion { get; set; } [Get("users")] Task GetUsersAsync(); } ``` What...

Hi all, I've created an Visual Studio extension which can generate a RestEase compatible interface + models from a swagger OpenApi specification file (.json, .yml or .yaml) - For the...

### Is there an existing issue for this? - [X] I have searched the existing issues ### Describe the bug Generated SQL query is correct, but no related entities are...

🐛 bug
🌶️ hot chocolate
Area: EntityFramework
Area: Data
⌛ stale

Does this version also expose the REST api on port 5000? (Just like the normal https://replicate.com/docs/reference/http ?)

question
awaiting-response
Stale

The method **GetAzureADAppOnlyAuthenticatedContext** is obsolete in latest version. This line ``` c# using (var cc = authManager.GetAzureADAppOnlyAuthenticatedContext("https://contoso.sharepoint.com/sites/demo")) ``` Should be replaced by: ``` c# using (var cc = await authManager.GetContextAsync("https://contoso.sharepoint.com/sites/demo"))...

area:docs
area:docs-comment

Do you also have support for the C# .NET version ? https://github.com/WireMock-Net/WireMock.Net

My project (https://github.com/StefH/angular-odata-es5) uses `phantomjs-prebuilt` instead of `phantomjs.exe`. Will this work ? And if this will work, how to configure it ?

Can you please update NuGet? - Microsoft.Extensions.DependencyInjection.Abstractions 2.20 - Microsoft.Azure.WebJobs 3.0.3

investigating

I've extracted the opus raw bytes from a matroska webm file and I want to regenerate the opus header and just append all the existing raw bytes. Is this possible?

When using code like: ``` c# OpusDecoder decoder = OpusDecoder.Create(48000, 2); OpusOggReadStream oggIn = new OpusOggReadStream(decoder, fileIn); while (oggIn.HasNextPacket) { short[] packet = oggIn.DecodeNextPacket(); } ``` it's not possible to...