March 2018
Beginner to intermediate
410 pages
10h 40m
English
It is possible to return textual feedback to the administrator for each node. This feedback might include important events, statuses, and error messages. We will make it easy for us, and assume the node works fine:
public NodeState State => NodeState.None;
public Task<IEnumerable<Message>> GetMessagesAsync(
RequestOrigin Caller)
{
return Task.FromResult<IEnumerable<Message>>(null);
}
Read now
Unlock full access