RemoteCommandService Public class
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph IW4MAdmin.Application.Misc
IW4MAdmin.Application.Misc.RemoteCommandService[[RemoteCommandService]]
end
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.IRemoteCommandService[[IRemoteCommandService]]
class SharedLibraryCore.Interfaces.IRemoteCommandService interfaceStyle;
end
SharedLibraryCore.Interfaces.IRemoteCommandService --> IW4MAdmin.Application.Misc.RemoteCommandService
Loading
Source code
public RemoteCommandService(ILogger<RemoteCommandService> logger, ApplicationConfiguration appConfig, ClientService clientService)
Source code
public virtual async 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 |
|
Source code
public virtual async 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