Class MvcLogViewModelBase
带有日志集合的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
Logs
所有日志
public ObservableCollection<Log> Logs { get; set; }
Property Value
OutPutLogs
输出日志
public ObservableCollection<Log> OutPutLogs { get; set; }
Property Value
RunLogs
运行日志
public ObservableCollection<Log> RunLogs { get; set; }
Property Value
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)