-
-
Notifications
You must be signed in to change notification settings - Fork 49
sharedlibrarycoreinterfaces IRemoteCommandService
RaidMax edited this page May 21, 2023
·
1 revision
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.IRemoteCommandService[[IRemoteCommandService]]
class SharedLibraryCore.Interfaces.IRemoteCommandService interfaceStyle;
end
| Returns | Name |
|---|---|
Task<IEnumerable<CommandResponseInfo>> |
Execute(int originId, Nullable<int> targetId, string command, IEnumerable<string> arguments, Server server) |
Task<(bool Item1, IEnumerable<CommandResponseInfo> Item2)> |
ExecuteWithResult(int originId, Nullable<int> targetId, string command, IEnumerable<string> arguments, Server server) |
public Task<IEnumerable<CommandResponseInfo>> Execute(int originId, Nullable<int> targetId, string command, IEnumerable<string> arguments, Server server)| Type | Name | Description |
|---|---|---|
int |
originId | |
Nullable<int> |
targetId | |
string |
command | |
IEnumerable<string> |
arguments | |
Server |
server |
public Task<(bool Item1, IEnumerable<CommandResponseInfo> Item2)> ExecuteWithResult(int originId, Nullable<int> targetId, string command, IEnumerable<string> arguments, Server server)| Type | Name | Description |
|---|---|---|
int |
originId | |
Nullable<int> |
targetId | |
string |
command | |
IEnumerable<string> |
arguments | |
Server |
server |
Generated with ModularDoc