Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ThreadCountEventArgs.cs
1using System;
2
4{
10 public delegate void ThreadCountEventHandler(object Sender, ThreadCountEventArgs e);
11
15 public class ThreadCountEventArgs : EventArgs
16 {
17 private int? count;
18
23 {
24 }
25
29 public int? Count
30 {
31 get => this.count;
32 set => this.count = value;
33 }
34 }
35}
Event arguments for thread count events.
ThreadCountEventArgs()
Event arguments for thread count events.
int? Count
Number of threads of the current process.
delegate void ThreadCountEventHandler(object Sender, ThreadCountEventArgs e)
Delegate for thread count event handlers.