Waher.Events
1.1.2
dotnet add package Waher.Events --version 1.1.2
NuGet\Install-Package Waher.Events -Version 1.1.2
<PackageReference Include="Waher.Events" Version="1.1.2" />
paket add Waher.Events --version 1.1.2
#r "nuget: Waher.Events, 1.1.2"
// Install Waher.Events as a Cake Addin
#addin nuget:?package=Waher.Events&version=1.1.2
// Install Waher.Events as a Cake Tool
#tool nuget:?package=Waher.Events&version=1.1.2
The Waher.Events project provides the basic architecture and framework for event logging in applications.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp1.0 netcoreapp1.1 netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard1.3 netstandard1.4 netstandard1.5 netstandard1.6 netstandard2.0 netstandard2.1 |
.NET Framework | net46 net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen30 tizen40 tizen60 |
Universal Windows Platform | uap uap10.0 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 1.3
- NETStandard.Library (>= 1.6.1)
NuGet packages (81)
Showing the top 5 NuGet packages that depend on Waher.Events:
Package | Downloads |
---|---|
Waher.Script
Class library that defines a script language and an object abstraction of computable elements. The library helps application parse and execute script. Script is extensible, and it is easy for modules to extend the script engine. Script can be evaluated using either synchronous or asynchronous processing. Script Syntax: https://waher.se/Script.md |
|
Waher.Runtime.Inventory
Class library that keeps an inventory of types and interfaces available in your code. It also provides a means to access available types given an interface, and can find the best implementation to process a task or item. It can be used to implement an Inversion of Control Pattern, and helps instantiate interfaces, abstract classes and normal classes, including recursively instantiating constructor arguments. Handles singleton types. |
|
Waher.Runtime.Cache
Class library that helps with caching of objects in runtime environments. |
|
Waher.Networking
Library that provides the basic architecture and tools for all networking libraries. This includes sniffers, simplified communication libraries for text and/or binary protocols, etc. |
|
Waher.Networking.XMPP
Class library for communication using the XMPP protocol. Library contains both client-to-server and component-to-server communication classes. Classes can be extended freely by external modules. XMPP Extensions supported by the library by default include: XEP-0004: Data Forms XEP-0030: Service Discovery XEP-0047: In-band Bytestreams XEP-0049: Private XML Storage XEP-0055: Jabber Search XEP-0059: Result Set Management XEP-0068: Field Standardization for Data Forms XEP-0077: In-band Registration XEP-0092: Software Version XEP-0114: Jabber Component Protocol XEP-0115: Entity Capabilities XEP-0122: Data Forms Validation XEP-0128: Service Discovery Extensions XEP-0141: Data Forms Layout XEP-0172: User Nickname XEP-0184: Message Delivery Receipts XEP-0191: Blocking Command XEP-0199: XMPP Ping XEP-0221: Data Forms Media Element XEP-0231: Bits of Binary XEP-0331: Data Forms - Color Field Types XEP-0336: Data Forms - Dynamic Forms XEP-0348: Signing Forms XEP-0363: HTTP File Upload XEP-0377: Spam Reporting Support for other extensions is provided by separate nuget packages. See: https://waher.se/IoTGateway/Libraries.md#networking |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.1.2 | 8,705 | 10/10/2022 |
1.1.1 | 74,022 | 2/15/2022 |
1.1.0 | 31,015 | 1/3/2022 |
1.0.15 | 33,274 | 7/30/2021 |
1.0.14 | 69,057 | 1/12/2021 |
1.0.13 | 11,639 | 11/17/2020 |
1.0.12 | 77,737 | 7/9/2020 |
1.0.11 | 32,521 | 3/31/2020 |
1.0.10 | 20,783 | 2/27/2020 |
1.0.9 | 2,738 | 1/3/2020 |
1.0.8 | 5,285 | 11/4/2019 |
1.0.7 | 93,682 | 6/1/2018 |
1.0.6 | 16,933 | 3/2/2018 |
1.0.5 | 52,294 | 11/24/2017 |
1.0.4 | 25,441 | 10/9/2017 |
1.0.3 | 7,744 | 9/24/2017 |
1.0.2 | 38,345 | 6/21/2017 |
1.0.1 | 4,675 | 5/17/2017 |
1.0.0 | 2,299 | 5/10/2017 |
The Waher.Events library uses a static class Log as a hub for all type of event logging in applications. To this hub you can register any number of Event Sinks that receive events and distribute them according to implementation details in each one. By logging all events to Log you have a configurable environment where you can change logging according to specific needs of the project.