Recent Posts
Xamarin.Forms 2.5 and Local Context in Android Custom Renderers
If you’ve updated any of your solutions to use Xamarin.Forms 2.5, you may have noticed compiler warnings that say “Context is obsolete as of version 2.5. Ple...
Fault Handling in Xamarin.Forms: Circuit Breaker using Polly
Previously I wrote about about handling faults that take a variable amount of time to recover from, in Xamarin.Forms, and discussed an implementation of the ...
Fault Handling in Xamarin.Forms: Circuit Breaker
Calls to remote services can fail due to transient faults, such as the momentary loss of network connectivity to services, the temporary unavailability of a ...
Using PKCE with IdentityServer from a Xamarin Client
The OpenID Connect and OAuth 2.0 specifications define a number of authentication flows between clients and authentication providers. These include: Implici...
Transient Fault Handling in Xamarin.Forms using Polly
Previously I wrote about transient fault handling in Xamarin.Forms, and discussed an implementation of the retry pattern that uses exponential backoff. The a...