1 sharedlibrarycoreinterfaces IRConConnectionFactory
RaidMax edited this page 2023-05-20 22:09:21 -05:00

IRConConnectionFactory Public interface

Description

defines the capabilities of an RCon connection factory

Diagram

  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

Members

Methods

Public methods

Returns Name
IRConConnection CreateConnection(IPEndPoint ipEndpoint, string password, string rconEngine)
creates an rcon connection instance

Details

Summary

defines the capabilities of an RCon connection factory

Methods

CreateConnection

Source code

public IRConConnection CreateConnection(IPEndPoint ipEndpoint, string password, string rconEngine)
Arguments
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
Summary

creates an rcon connection instance

Returns

instance of rcon connection

Generated with ModularDoc