Thursday, January 4, 2018

Custom Service Dependency Injection In .Net Core 1.1

INTRODUCTIONCustom Service Dependency Injection In .Net Core 1.1There are various ways to inject dependency in MVC. Dependency injection is a technique to pass the required Dependency so that the desired action can be performed.In this article we will go through with one of the key features of .Net Core, Custom Service dependency injection in .Net...

Wednesday, January 3, 2018

Register A Chat Bot Using MS Bot Framework

Recently, I created a Chabot for a purpose which I wanted to register within. After an implementation of Bot using MS Bot framework, it should be registered with https://dev.botframework.com/bots. These are a few steps which may help you to register and ready to use. Step 1 Go to https://dev.botframework.com/bots. You will have the following...

Short circuiting and branching in .NET Core are key concepts to make an application sequential and provide more control over the response. The term middleware is used in a .NET Core application either to delegate a request to the next component in the pipeline or short circuit it. Middleware has some important aspects as shown below: It delegates...