示例#1
0
        public Log()
        {
            Entries    = entries;
            NewEntries = newEntries;

            classifier = ServiceLocator.Instance.Get <IClassifyingService <IClassifier> >();

            // Observe the NewEntries to maintain a full history.
            PropertyChanged += OnPropertyChanged;
        }
示例#2
0
文件: Log.cs 项目: jkoplo/Sentinel
        public Log()
        {
            Entries = _entries;
            NewEntries = _newEntries;

            _classifier = ServiceLocator.Instance.Get<IClassifyingService<IClassifier>>();

            // Observe the NewEntries to maintain a full history.
            PropertyChanged += OnPropertyChanged;
        }