December 9, 2023

Implement interfaces

In this module, you’ll learn to extend classes with multiple interfaces, use interfaces as a type, and understand interface design practices.
December 8, 2023

Guided project langstons ant

This module will guide you through the steps required to develop your own Langston’s Ant project. Your code will use interfaces to represent the functions the […]
December 8, 2023

Design code with interfaces

In this module, you’ll learn about tightly coupled code and how to avoid it. You’ll also learn how interfaces can improve your project by reducing code […]
December 6, 2023

ASP.NET Core 8.0: Securing Swagger UI Endpoints

With ASP.NET Core 8.0, now you can secure Swagger UI endpoints by calling MapSwagger().RequireAuthorization. Consider the following code example. WebApplicationBuilder builder = WebApplication.CreateBuilder(args); builder.Services.AddEndpointsApiExplorer();builder.Services.AddSwaggerGen(); builder.Services.AddAuthorization();builder.Services.AddAuthentication(“Bearer”