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