skip to Main Content

Asp.net – How the model class works in C#

public class Program { public static void Main(string[] args) { Person person = new Person(); person.name = "from main function"; Program pro = new Program(); Console.WriteLine(person.name); pro.change(person); Console.WriteLine(person.name); } public void change(Person per) { per.name = "From public void Change…

VIEW QUESTION

What is "an alternate pipeline" in ASP.NET Core?

Reading the docs for UseExceptionHandler extension method that adds standard exception handler middleware, I see following description: UseExceptionHandler(IApplicationBuilder) Adds a middleware to the pipeline that will catch exceptions, log them, and re-execute the request in an alternate pipeline. The request…

VIEW QUESTION
Back To Top
Search