
Run Azure Function on a different port
I want to run more than one Azure Function at the same time but each of them on a different port because by default all Azure Functions are starting on port 7071. How can I do that?
All technologies, only pure source code
I want to run more than one Azure Function at the same time but each of them on a different port because by default all Azure Functions are starting on port 7071. How can I do that?
I’m facing a problem when I want to cast a base class to a derive class. A derive class is a class that derives from a base class. In this post I explain my solution to this problem.
Source Generators in C# 9 will allow compiler-extensions to inspect code and then inject additional source code at compile-time
Source generators is a new feature of C# 9 that enables compile-time metaprogramming and generating additional source file.
Connect your C# application with Xero OAuth 2.0 is not really simple. Here how getting the list of organization from Xero step by step
In this new post I explain the procedure for getting an invoice list from Xero in your C# applications with few lines of code.
How to retrieve #key, #secret, certificate from #Azure #KeyVault in C#? A step by step guide to configure your Azure account and start a new C# project
How integrate Xero in your C# application? This is my guide step by step after spending more than one week to sort it out
Uno Platform announced today that it now supports macOS as a target platform. This new support means that developers can…
You can set up Swagger UI in your Azure Function API to allow for providing documentation for your serverless API pretty easily
In this post I like to analyse how to return multiple output in Azure Functions with C# and Service Bus….
How to create an Azure Function in C# Script using as input and output a message from and to Service Bus Queue step by step
Xamarin.Forms code runs on multiple platforms – each of which has its own filesystem. This means that reading and writing…
In my previous post, we discussed about immutable data structure. Now, imagine that we want to write a method similar…
An immutable data structure (or object) is a structure whose value doesn’t change after it’s created. When you declare a data structure that contains some values, you store these values in slots, such as a field or value declaration.
The unity container manages the lifetime of objects of all the dependencies that it resolves using lifetime managers. Unity container…
This article shows how to implement a Microsoft Account as an external provider in an IdentityServer4 project using ASP.NET Core…
I have a website running on ASP.NET MVC 4.5.2. I have an IdentityServer4 server running but when I try and…
You can use System.UriBuilder class to build a new well-formed URI. You need to set some property of UriBuilder object’s,…
A tag helper is any class that implements the ITagHelper interface. However, when you create a tag helper, you generally…
Simple example for MongoDB. Save and retrieve data from Azure Cosmos DB. Create an Azure Cosmos Db as MongoDb For…
In another post I discussed how to implement Inversion of Control Pattern in C#. In this post I should explain…
For a new project, my client required to output date strings in a format that included the two letter suffix…
Sometimes you need to change a value for a specific platform and this value is a Double, for example. I…
Apple introduced with iOS 11 a new UI in particular for larger titles: if you open your email, you see…