This post shows how Cosmos DB change feed can be exposed from ASP.NET Core.
Strona głównaUżytkownik
tpeczek | użytkownik
In some situations Server-Sent Events connection may require keep alives. This post describes one of such situations and shows how it can be solved in ASP.NET Core.
ASP.NET Core WebHooks provide support for receiving web hooks in ASP.NET Core web applications. This post explores built-in capabilities and customization options for ASP.NET Core WebHooks model binding.
ASP.NET Core WebHooks provide support for receiving web hooks in ASP.NET Core web applications. This post explores how ASP.NET Core WebHooks support signature validation.
ASP.NET Core WebHooks provide support for receiving web hooks in ASP.NET Core web applications. This post explores how ASP.NET Core WebHooks handles verification requests.
This is a second post in my series about ASP.NET Core WebHooks. As promised it will be focused on machinery which makes it possible for a WebHook request to find matching action.
ASP.NET Core WebHooks provide support for receiving web hooks in ASP.NET Core web applications. This post is a general overview of what's under its hood and how it works.
This post shows how RethinkDB changefeed can be exposed from ASP.NET Core with Server-Sent Events and WebSockets fallback.
[EN] Using subdomain based pipeline branching for static files delivery optimization in ASP.NET Core
Sometimes there is a valid reason to serve static files from the application instead of CDN. In such cases it's important to remember about performance. This post describes one of optimizations which can be applied.
Sometimes you need to acquire client originating IP address in your web application. This post shows how this can be done in ASP.NET Core, taking into consideration running behind proxies (including Akamai and CloudFlare).
This post shows how to queue background tasks (specifically push notifications delivery requests) with help of IHostedService in ASP.NET Core.
ASP.NET Core comes with out-of-the-box support for server side in-memory response caching. This post shows how to replace in-memory approach with Redis and address durability and load balancing.
Clear-Site-Data is a hard which can be used to instruct a browser to clear locally stored data. This post explores how it can be combined with sign out in ASP.NET Core.
This post discusses WebSocket lifetime and how to handle prematurely closed connections.
This post shows lesser known features of Web Push Protocol - Replacing Messages and Urgency.
Push API and Web Push Protocol specifications allow for delivering push notifications even when client is offline. This post shows how to request delivery of push message.
Push API and Web Push Protocol specifications allow for delivering push notifications even when client is offline. This post shows how this capabilities can be used in ASP.NET Core.
POST Tunneling is a technic which can be used when client doesn't support certain HTTP methods or infrastructure blocks them. This post shows how to support it in ASP.NET Core.
Save-Data request header is a client hint which indicates that client would like to reduce data usage. This post shows how it can be used in ASP.NET Core MVC.
This post shows how conditional requests can be used in ASP.NET Core MVC powered Web API to improve performance and avoid Lost Update problem.