1using System.Threading.Tasks;
22 public override string Name =>
"Unblock";
33 string Endpoint = Arguments[0];
36 await ResponseCallback(
"`" + Endpoint +
"` unblocked and reset.",
string.Empty);
47 public override string[]
HelpParagraphs =>
new string[] {
"Unblocks a remote endpoint defined by `ENDPOINT`." };
Static class managing the runtime environment of the IoT Gateway.
static LoginAuditor LoginAuditor
Current Login Auditor. Should be used by modules accepting user logins, to protect the system from un...
An administrative command taking one parameter.
Unblocks a remote endpoint.
Unblock()
Unblocks a remote endpoint.
override string[] HelpParagraphs
Markdown description of syntax.
override string ParameterName
Name of parameter.
override async Task Execute(ChatState State, string[] Arguments, string OrgMessage, ResponseCallbackHandler ResponseCallback)
Executes the command.
override string Name
Command name
delegate Task< string > ResponseCallbackHandler(string Markdown, string MessageId)
Delegate for response callback handler methods.