Strona głównaUżytkownik

tpeczek | użytkownik

tpeczek
tpeczek
1 685,64
1135 dni, 14 godzin, 42 minuty temu
6 grudnia, 2016
dotnetomaniak.pl

This post shows how Cosmos DB change feed can be exposed from ASP.NET Core.

Źródło: www.tpeczek.com
Dziel się z innymi:
[EN] Exposing Cosmos DB change feed from ASP.NET Core

Web 2265 dni, 18 godzin, 21 minut temu tpeczek 28 źrodło rozwiń

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.

Źródło: www.tpeczek.com
Dziel się z innymi:
[EN] Server-Sent Events and ASP.NET Core - You may need keep alives

Web 2279 dni, 16 godzin, 52 minuty temu tpeczek 63 źrodło rozwiń

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.

Źródło: www.tpeczek.com
Dziel się z innymi:
[EN] Under the hood of ASP.NET Core WebHooks - Model Binding

Web 2302 dni, 18 godzin, 7 minut temu tpeczek 59 źrodło rozwiń

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.

Źródło: www.tpeczek.com
Dziel się z innymi:
[EN] Under the hood of ASP.NET Core WebHooks - Signature Validation

Web 2316 dni, 18 godzin, 22 minuty temu tpeczek 27 źrodło rozwiń

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.

Źródło: www.tpeczek.com
Dziel się z innymi:
[EN] Under the hood of ASP.NET Core WebHooks - Verification Requests

Web 2324 dni, 19 godzin, 38 minut temu tpeczek 33 źrodło rozwiń

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.

Źródło: www.tpeczek.com
Dziel się z innymi:
[EN] Under the hood of ASP.NET Core WebHooks - Routing

Web 2335 dni, 12 godzin, 5 minut temu tpeczek 15 źrodło rozwiń

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.

Źródło: www.tpeczek.com
Dziel się z innymi:
[EN] Under the hood of ASP.NET Core WebHooks - Introduction

Web 2340 dni, 7 godzin, 26 minut temu tpeczek 49 źrodło rozwiń

This post shows how RethinkDB changefeed can be exposed from ASP.NET Core with Server-Sent Events and WebSockets fallback.

Źródło: www.tpeczek.com
Dziel się z innymi:
[EN] Exposing RethinkDB changefeed from ASP.NET Core

Web 2363 dni, 18 godzin, 48 minut temu tpeczek 20 źrodło rozwiń

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.

Tagi: Asp.Net Core
Źródło: www.tpeczek.com
Dziel się z innymi:
[EN] Using subdomain based pipeline branching for static files delivery optimization in ASP.NET Core

Web 2380 dni, 18 godzin, 39 minut temu tpeczek 39 źrodło rozwiń

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).

Źródło: www.tpeczek.com
Dziel się z innymi:
[EN] Acquiring client originating IP address (with Akamai and CloudFlare support) in ASP.NET Core

Web 2387 dni, 17 godzin, 8 minut temu tpeczek 13 źrodło rozwiń

This post shows how to queue background tasks (specifically push notifications delivery requests) with help of IHostedService in ASP.NET Core.

Źródło: www.tpeczek.com
Dziel się z innymi:
Push Notifications and ASP.NET Core - Part 4 (Queueing requesting delivery in background)

Web 2412 dni, 16 godzin, 28 minut temu tpeczek 113 źrodło rozwiń

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.

Źródło: www.tpeczek.com
Dziel się z innymi:
[EN] Redis backed response caching in ASP.NET Core

Web 2430 dni, 15 godzin, 19 minut temu tpeczek 90 źrodło rozwiń

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.

[EN] Clearing site data upon sign out in ASP.NET Core

Web 2442 dni, 6 godzin, 56 minut temu tpeczek 41 źrodło rozwiń

This post discusses WebSocket lifetime and how to handle prematurely closed connections.

Źródło: www.tpeczek.com
Dziel się z innymi:
[EN] Back to WebSockets fundamentals in ASP.NET Core - Lifetime & Prematurely closed connections

Web 2457 dni, 16 godzin, 17 minut temu tpeczek 85 źrodło rozwiń

This post shows lesser known features of Web Push Protocol - Replacing Messages and Urgency.

[EN] Push Notifications and ASP.NET Core - Part 3 (Replacing Messages & Urgency)

Web 2475 dni, 17 godzin, 55 minut temu tpeczek 73 źrodło rozwiń

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.

[EN] Push Notifications and ASP.NET Core - Part 2 (Requesting Delivery)

Web 2490 dni, 8 godzin, 37 minut temu tpeczek 65 źrodło rozwiń

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.

[EN] Push Notifications and ASP.NET Core - Part 1 (Push API)

Web 2496 dni, 19 godzin, 23 minuty temu tpeczek 340 źrodło rozwiń

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.

Źródło: www.tpeczek.com
Dziel się z innymi:
[EN] POST Tunneling Middleware for ASP.NET Core

Web 2518 dni, 18 godzin, 42 minuty temu tpeczek 66 źrodło rozwiń

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.

[EN] Utilizing Save-Data client hint in ASP.NET Core MVC

Web 2536 dni, 16 godzin, 17 minut temu tpeczek 43 źrodło rozwiń

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.

Źródło: www.tpeczek.com
Dziel się z innymi:
[EN] Handling conditional requests in ASP.NET Core MVC

Web 2553 dni, 18 godzin, 5 minut temu tpeczek 93 źrodło rozwiń

1 2 3 4