Table of Contents

Class MvcLogViewModelBase

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

带有日志集合的MvcViewMode基类

public class MvcLogViewModelBase : MvcViewModelBase, INotifyPropertyChanged, IDisplayer, IMvcViewModelBase, IAuthority, IMvcLog
Inheritance
MvcLogViewModelBase
Implements
Inherited Members
Extension Methods

Properties

ErrorLogs

错误日志

public ObservableCollection<Log> ErrorLogs { get; set; }

Property Value

ObservableCollection<Log>

Logs

所有日志

public ObservableCollection<Log> Logs { get; set; }

Property Value

ObservableCollection<Log>

OutPutLogs

输出日志

public ObservableCollection<Log> OutPutLogs { get; set; }

Property Value

ObservableCollection<Log>

RunLogs

运行日志

public ObservableCollection<Log> RunLogs { get; set; }

Property Value

ObservableCollection<Log>

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