Info
Version: | 7.0.3 |
Author(s): | Sascha Falk |
Last Update: | Monday, September 2, 2024 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/GriffinPlus/dotnet-libs-logging |
NuGet Url: | https://www.nuget.org/packages/GriffinPlus.Lib.Logging.Collections |
Install
Install-Package GriffinPlus.Lib.Logging.Collections
dotnet add package GriffinPlus.Lib.Logging.Collections
paket add GriffinPlus.Lib.Logging.Collections
GriffinPlus.Lib.Logging.Collections Download (Unzip the "nupkg" after downloading)
Dependencies
.NETStandard 2.0
- GriffinPlus.Lib.Logging(>= 3.0.0 && <= 3.0.0)
- GriffinPlus.Lib.Logging(>= 3.0.0 && <= 3.0.0)
Tags
The unfiltered collection and the filtered collection are fully data-binding capable and can be directly used from code that
access collections via the IList/IList<T> interface and track changes via the interfaces INotifyCollectionChanged and
INotifyPropertyChanged.
An accessor allows accessing the filtered message set without filtering the entire message set in
advance and is a better fit when processing large amounts of messages, but it does not support data binding (as the filtered
collection does). A basic (also data-binding capable) filter is also part of the package. It allows to filter by timestamp
and select from collections of process names/ids, application names, log writer names, log level names and tags. Items from
these collections simply need to be selected to filter by them.
A full-text search on the message text field is also supported.
The filter can be used in conjunction with the filtered collection and the filtering accessor.