Richard Collette

Results 88 comments of Richard Collette

Not off the top of my head. I will not have time to look at it at until at least this weekend.

Some work on moving this to .NET standard/core was begun but hadn't been merged because on initial trial of it, it wouldn't run on a MAC. I've just started a...

If you want lossless, why not use the ParallelForwardingAppender? Aside from that, what not create a pull request and a test for the code that you've already written?

You have to have at least an empty array of options. If the bound options is null you will get this.

@bryanapellanes-okta - I'm not seeing code that would resolve #712 ?

I am working around this issue currently by defining a UserAttribute converter. SDK configuration ```c# services.AddSingleton( serviceProvider => { IOptions options = serviceProvider.GetService() ?? throw new ConfigurationErrorsException( "Unable to get...

Seriously, System.Text.Json has been out for years. Newtonsoft is not compatible with JSON serialization source generators.

@bryanapellanes-okta - When sending UserSchemaAttribute objects as part of the call to ISchemaApiAsync.UpdateApplicationUserProfileAsync. In the curl above you can see what properties are set and and not set in the...

The root of this issue is that this library is not using the standard .NET configuration apis, and it's really creating a conundrum for me. https://learn.microsoft.com/en-us/dotnet/core/extensions/configuration I should be able...

How configuration happens (where it comes from) should not be a concern of this library. Configuration mechanisms should be determined by the application.