Class MvcLogControllerBase<T>
用于记录带有输出日志的Controller类
public class MvcLogControllerBase<T> : Controller<T>, IController where T : MvcViewModelBase
Type Parameters
T
- Inheritance
-
Controller<T>MvcLogControllerBase<T>
- Implements
- Derived
- Inherited Members
- Extension Methods
Constructors
MvcLogControllerBase(IMvcLog)
传入日志接口
public MvcLogControllerBase(IMvcLog shareViewModel)
Parameters
shareViewModel
IMvcLog
Methods
ErrorLog(string, string)
错误日志
public void ErrorLog(string title, string message)
Parameters
OutPutLog(string, string)
输出日志
public void OutPutLog(string title, string message)
Parameters
RunLog(string, string)
运行日志
public void RunLog(string title, string message)
Parameters
View(string)
重写跳转方法,跳转页面记录日志
protected override IActionResult View(string name = "")
Parameters
name
string