Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
CollectionEventArgs.cs
1using System;
2using System.Threading.Tasks;
3
4namespace Waher.Persistence
5{
11 public delegate Task CollectionEventHandler(object Sender, CollectionEventArgs e);
12
16 public class CollectionEventArgs : EventArgs
17 {
18 private readonly string collection;
19
25 {
26 this.collection = Collection;
27 }
28
32 public string Collection => this.collection;
33 }
34}
Event arguments for collection events.
CollectionEventArgs(string Collection)
Event arguments for collection events.
delegate Task CollectionEventHandler(object Sender, CollectionEventArgs e)
Event handler for collection events.