Results 518 comments of AraHaan

I think a better option would be the following: - for .NET Framework compatibility use Newtonsoft.Json on netstandard2.0 target. - for .NET 5+ compatibility use System.Text.Json on netstandard2.1 target. -...

I guess another option would be to define an interface in stripe-dotnet and then have separate json "plugins" that implement said interface for newtonsoft and system.text.json that then get loaded...

I actually wish there was a high-level version of the Event class myself where basically it operates on enums for the event type instead that hides the fact that they...

I think this would be great for the following targets only: The following can be done for the below targets just by using ``netstandard2.1`` as a target: - net5.0 (out...

Also there are problems with that as well. For starters what can be problematic: - projects that use the main Stripe.net package in .NET Framework 4.7.2 with ASP.NET MVC which...

> There's no need to drop .NET Framework support to add this; `HttpClientFactory` is supported in .NET Standard 2.0, and hence .NET Framework 4.6.2+. You just need to reference [the...

> > None of the Microsoft.Extensions packages including [the Microsoft.Extensions.Http NuGet package](https://www.nuget.org/packages/Microsoft.Extensions.Http) does not integrate well with ASP.NET Framework MVC applications > > Not sure where you've got that idea...

> This rally needs to be implemented. For example, because the SDK is directly creating its own `HttpClient` instances, there is none of the per-request logging that `HttpClientFactory` brings. >...

@jrsun is it possible to ask the API what a ``User``'s campaign id is if you do not know it if you got their access token from them doing oauth...

For me I manually embed python and am looking into using ``zipextimporter`` to load pyd files from my site-packages that is specifically ``aiohttp``, ``frozenlist``, ``multidict``, and ``yarl``. However the issue...