Table of Contents

Class MvcLogControllerBase<T>

Namespace
HeBianGu.Service.Mvc
Assembly
HeBianGu.Service.Mvc.dll

用于记录带有输出日志的Controller类

public class MvcLogControllerBase<T> : Controller<T>, IController where T : MvcViewModelBase

Type Parameters

T
Inheritance
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

title string
message string

OutPutLog(string, string)

输出日志

public void OutPutLog(string title, string message)

Parameters

title string
message string

RunLog(string, string)

运行日志

public void RunLog(string title, string message)

Parameters

title string
message string

View(string)

重写跳转方法,跳转页面记录日志

protected override IActionResult View(string name = "")

Parameters

name string

Returns

IActionResult