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

IRConConnection Public interface

Description

defines the capabilities of an RCon connection

Diagram

  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

Members

Methods

Public methods

Returns Name
Task<string``[]> SendQueryAsync(QueryType type, string parameters, CancellationToken token)
void SetConfiguration(IRConParser config)
sets the rcon parser

Details

Summary

defines the capabilities of an RCon connection

Methods

SendQueryAsync

Source code

public Task<string> SendQueryAsync(QueryType type, string parameters, CancellationToken token)
Arguments
Type Name Description
QueryType type
string parameters
CancellationToken token

SetConfiguration

Source code

public void SetConfiguration(IRConParser config)
Arguments
Type Name Description
IRConParser config parser
Summary

sets the rcon parser

Generated with ModularDoc