-
-
Notifications
You must be signed in to change notification settings - Fork 44
sharedlibrarycoreinterfaces IRConConnection
RaidMax edited this page May 21, 2023
·
1 revision
defines the capabilities of an RCon connection
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.IRConConnection[[IRConConnection]]
class SharedLibraryCore.Interfaces.IRConConnection interfaceStyle;
end
Returns | Name |
---|---|
Task <string``[] > |
SendQueryAsync (QueryType type, string parameters, CancellationToken token) |
void |
SetConfiguration (IRConParser config)sets the rcon parser |
defines the capabilities of an RCon connection
public Task<string> SendQueryAsync(QueryType type, string parameters, CancellationToken token)
Type | Name | Description |
---|---|---|
QueryType |
type | |
string |
parameters | |
CancellationToken |
token |
public void SetConfiguration(IRConParser config)
Type | Name | Description |
---|---|---|
IRConParser |
config | parser |
sets the rcon parser
Generated with ModularDoc