Category Archives: APIs

APIs with C# – Part 4 Options

NET provides support for passing options via environment variables, appsettings.json, and XML files. as well as command line arguments. In short, each higher level overrides the settings in lower levels. To add options: Create a public class and name it … Continue reading

Posted in APIs | Leave a comment

API – Functions Part 3: Routing

In the previous part of this series, we looked at creating our first API. But how do you determine which API is being invoked? This is accomplished with routing. If you have a Products class your entry (end point) might look … Continue reading

Posted in API, APIs, Essentials, Mini-Tutorial | Tagged | 2 Comments

API Part 2 – Creating An Azure Function

This is part 2 in our series on .NET APIs with C# – Functions. Find Part 1 here. In this part we’ll talk about how you build an Azure Function. Functions are another way of interacting with an API. Here … Continue reading

Posted in API, APIs, Essentials, Mini-Tutorial | Tagged | Leave a comment