Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ConsoleErrorWriteLineString.cs
1
using
System.Threading.Tasks;
2
3
namespace
Waher.Runtime.Console.Worker
4
{
8
public
class
ConsoleErrorWriteLineString
:
WorkItem
9
{
10
private
readonly
string
value;
11
16
public
ConsoleErrorWriteLineString
(
string
Value)
17
{
18
this.value = Value;
19
}
20
24
public
override
Task
Execute
()
25
{
26
System.Console.Error.WriteLine(this.value);
27
return
Task.CompletedTask;
28
}
29
}
30
}
Waher.Runtime.Console.Worker.ConsoleErrorWriteLineString
Writes a string to the console, appending a newline at the end.
Definition:
ConsoleErrorWriteLineString.cs:9
Waher.Runtime.Console.Worker.ConsoleErrorWriteLineString.ConsoleErrorWriteLineString
ConsoleErrorWriteLineString(string Value)
Writes a string to the console, appending a newline at the end.
Definition:
ConsoleErrorWriteLineString.cs:16
Waher.Runtime.Console.Worker.ConsoleErrorWriteLineString.Execute
override Task Execute()
Executes the console operation.
Definition:
ConsoleErrorWriteLineString.cs:24
Waher.Runtime.Console.Worker.WorkItem
Manages a Console operation.
Definition:
WorkItem.cs:9
Waher.Runtime.Console.Worker
Definition:
ConsoleBackgroundColor.cs:5
IoTGateway
Runtime
Waher.Runtime.Console
Worker
ConsoleErrorWriteLineString.cs
Generated by
1.9.5