Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IoBytesEventArgs.cs
1using System;
2
4{
8 public class IoBytesEventArgs : EventArgs
9 {
15 public IoBytesEventArgs(int Nr, long Total)
16 {
17 this.Nr = Nr;
18 this.Total = Total;
19 }
20
24 public int Nr { get; }
25
29 public long Total { get; }
30 }
31}
Event arguments for an I/O bytes event.
IoBytesEventArgs(int Nr, long Total)
Event arguments for an I/O bytes event.