Action endpoint¶
RPC endpoint that is invoked with no input or output.
| Method | Input | Result | HTTP Verb | Description |
|---|---|---|---|---|
| Invoke | - | - | POST |
Invokes the action. |
Usage¶
var refresh = new ActionEndpoint(client, "refresh");
// Invoke the action
await refresh.InvokeAsync();
ActionEndpoint refresh = new ActionEndpoint(client, "refresh");
// Invoke the action
refresh.invoke();
val refresh = ActionEndpoint(client, "refresh")
// Invoke the action
refresh.invoke()
const refresh = new ActionEndpoint(client, "refresh");
// Invoke the action
await refresh.invoke();