dotNET Weekly
Add a link
LoginRegister
PrevJuly 2018Next
WSMTWTFS
2624252627282930
271234567
28891011121314
2915161718192021
3022232425262728
312930311234

Want to receive every Tuesday the best .NET links?

Once subscribed you can login, submit a link and receive the weekly newsletter.

Join more than 4847 .NET professionals!

Adding validation to strongly typed configuration objects in ASP.NET Core

by bill-s, 2018-07-11T05:23:17.679Z

In this post I describe an approach you can use to ensure your strongly typed configuration objects have been correctly bound to your configuration when your app starts up. By using an IStartupFilter, you can validate that your configuration objects have expected values early, instead of at some point later when your app is running.

asp.net-core

Configuring HTTPS in ASP.NET Core 2.1

by bill-s, 2018-07-09T18:20:56.558Z

Finally HTTPS gets into ASP.NET Core. It was there before back in 1.1, but was kinda tricky to configure. It was available in 2.0 bit not configured by default. Now it is part of the default configuration and pretty much visible and present to the developers who will create a new ASP.NET Core 2.1 project.

asp.net-core

Automatic ModelState Validation for ASP.NET Core

by bill-s, 2018-07-11T05:24:05.572Z

Model State Validation for a JSON API isn't too hard because you only need to send back validation errors, especially with the ApiController attribute. However, for all those that are still using server-side rendering and Razor, it's still a bit challenging.

asp.net-core

.NET JIT and CLR - Joined at the Hip

by bill-s, 2018-07-09T23:21:00.428Z

I’ve been digging into .NET Internals for a while now, but never really looked closely at how the ‘Just-in-Time’ (JIT) compiler works. In my mind, the interaction between the .NET Runtime and the JIT has always looked like this...

.net

Under the hood of ASP.NET Core WebHooks - Signature Validation

by tpeczek, 2018-07-06T08:40:21.415Z

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

NewslettersAboutPrivacy Policy