Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
SourceEventArgs.cs
1using System;
2
4{
8 public class SourceEventArgs : EventArgs
9 {
10 private readonly string source;
11
16 public SourceEventArgs(string Source)
17 : base()
18 {
19 this.source = Source;
20 }
21
25 public string Source => this.source;
26 }
27}
string Source
Source causing the event to be raised.
SourceEventArgs(string Source)
Event arguments for source events.