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;
2
3namespace Waher.Persistence
4{
8 public class CollectionEventArgs : EventArgs
9 {
10 private readonly string collection;
11
17 {
18 this.collection = Collection;
19 }
20
24 public string Collection => this.collection;
25 }
26}
Event arguments for collection events.
CollectionEventArgs(string Collection)
Event arguments for collection events.