Asp.net+Vue2 to build Simple Accounting WebApp II (use ABP to quickly build. Net background)

Introduction to ABP ABP is short for "ASP. NET Boilerplate Project" (ASP. NET template project).  ASP.NET Boilerplate is a new starting point for developing modern WEB applications with best practices and popular technologies. It aims to be a general WEB application framework and project template. Details can be ...

Posted by demon_athens on Wed, 19 Dec 2018 20:00:07 -0800

SignalR Hubs Api Explanation (C Server End)

How to Register SignalR Middleware To enable clients to connect to Hub, you need to call the MapSignalR method when the program starts. The following code shows how to define SignalR Hubs routing in the OWIN startup class. using Microsoft.Owin; using Owin; [assembly: OwinStartup(typeof(MyApplication.Startup))] namespace MyApplication ...

Posted by antray on Tue, 18 Dec 2018 06:06:04 -0800

Step by step create ASP.NET MVC5 program [Repository+Autofac+Automapper+SqlSugar] (6)

Preface Hello, everyone. I'm Rector. It's Friday again, very excited, very happy, very high......... Rector meets you again in Tuheng!!! Last article Step by step to create ASP.NET MVC5 program [Repository+Autofac+Automapper+SqlSugar] (V) We have completed: What is AutoMapper Install AutoMapper Configuration of AutoMapper Application of AutoMa ...

Posted by GaryAC on Sat, 15 Dec 2018 10:39:03 -0800

Viewing the adapter pattern from the HTTP MessageHandler Adapter of System.Web.Http.Owin

Copyright of this article belongs to Blog Garden and author Wu Shuang himself. Please indicate the original address at www.cnblogs.com/tdws. I. Write in front Adapter mode It can be used to adapt between existing interfaces and incompatible classes. It helps to avoid large-scale rewriting of existing client code by wrapping the interfaces of ex ...

Posted by idire on Thu, 13 Dec 2018 12:48:23 -0800

ASP.NET Web API and Owin OAuth: Calling User-Related Web APIs

Reference page: http://www.yuanjiaocheng.net/webapi/web-api-route.html http://www.yuanjiaocheng.net/webapi/parameter-binding.html http://www.yuanjiaocheng.net/webapi/action-method-returntype.html http://www.yuanjiaocheng.net/webapi/web-api-reqresq-format.html http://www.yuanjiaocheng.net/webapi/media-formatter.html In the previous article Bowen ...

Posted by twilitegxa on Wed, 12 Dec 2018 13:48:06 -0800

Asp.Net Web API 2 Lesson 4: HttpClient Message Processor

Share: I have several Aliyun coupons, which can offer up to 50% discount for purchasing or upgrading Aliyun's corresponding products. Ticket address: https://promotion.aliyun.com/ntms/act/ambassador/sharetouser.html?userCode=ohmepe03 Asp.Net Web API Navigation Asp.Net Web API Lesson 1: Introduction http://www.cnblogs.com/aehyok/p/3432158.html ...

Posted by CanMan2004 on Tue, 11 Dec 2018 12:03:06 -0800

ASP.NET MVC logs using Log4net

Log4net introduction Log4net, Apache's next open source project, is a clone of Log4j. We can control the destination of log information output. Log4net defines a variety of log information output modes. It can output logs to console, text files, windows log event viewer, including database, mail and other locations, so that we can quickly trac ...

Posted by kgahn on Tue, 11 Dec 2018 03:42:05 -0800

SignalR Hubs Api Details (.Net C# Client)

Establish a SignalR connection var hubConnection = new HubConnection("http://www.contoso.com/"); IHubProxy stockTickerHubProxy = hubConnection.CreateHubProxy("StockTickerHub"); stockTickerHubProxy.On<Stock>("UpdateStockPrice", stock => Console.WriteLine("Stock update for {0} new price {1}", stock.Symbol, stock.Price)); await hubC ...

Posted by gurhy on Mon, 10 Dec 2018 06:57:05 -0800