-
-
Notifications
You must be signed in to change notification settings - Fork 44
sharedlibrarycoreinterfaces IRConConnectionFactory
RaidMax edited this page May 21, 2023
·
1 revision
defines the capabilities of an RCon connection factory
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.IRConConnectionFactory[[IRConConnectionFactory]]
class SharedLibraryCore.Interfaces.IRConConnectionFactory interfaceStyle;
end
Returns | Name |
---|---|
IRConConnection |
CreateConnection (IPEndPoint ipEndpoint, string password, string rconEngine)creates an rcon connection instance |
defines the capabilities of an RCon connection factory
public IRConConnection CreateConnection(IPEndPoint ipEndpoint, string password, string rconEngine)
Type | Name | Description |
---|---|---|
IPEndPoint |
ipEndpoint | ip address and port of the server |
string |
password | password of the server |
string |
rconEngine | engine to create the rcon connection to |
creates an rcon connection instance
instance of rcon connection
Generated with ModularDoc