lostincomputer

Results 7 comments of lostincomputer

I also think that making `JsonSerializationException.Create` public is better that copy-pasting code. It also ensures that custom `JsonConverter`s populate `JsonSerializationException`s the same way as built-in ones.

Unfortunately, our application is required to not block the user when validation is running. We can't set the control to readonly or disable (or the users and BA will get...

@crissdev I forgot to mention that our async rule uses a debouncer (delay) before it calls the server but it gets defeated when the network or server is too slow....

Showing stale validation state can mislead the user though unless the UI has an 'is validating' indicator. By the way, isValidating property doesn't support concurrent async operations. The easiest way...

There are two reasons for isValidating to be updated. First: multiple async rules attached to the observable. Second: the async rule is still running when it is called again. The...

severityLevel is also extremely useful to us. Since Knockout Validation can only display one error at a time, it would set observable.error and observable.severityLevel to the violated rule that has...

My business problem is I want to be able to configure Polly without needing to add an argument to the method. For example: ``` interface IApiClient { [MaxRetry(3)] string DoSomething();...