Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ConsoleBeep.cs
1using System.Threading;
2using System.Threading.Tasks;
4
6{
10 public class ConsoleBeep : WorkItem
11 {
15 public ConsoleBeep()
16 {
17 }
18
23 public override Task Execute(CancellationToken Cancel)
24 {
25 System.Console.Beep();
26 return Task.CompletedTask;
27 }
28 }
29}
override Task Execute(CancellationToken Cancel)
Executes the console operation.
Definition: ConsoleBeep.cs:23
Represents an asynchronous operation to be performed.
Definition: WorkItem.cs:10