IW4M-Admin/SharedLibraryCore/Interfaces/IRConConnectionFactory.cs
2022-01-26 15:26:25 -06:00

19 lines
712 B
C#

using System.Net;
namespace SharedLibraryCore.Interfaces
{
/// <summary>
/// defines the capabilities of an RCon connection factory
/// </summary>
public interface IRConConnectionFactory
{
/// <summary>
/// creates an rcon connection instance
/// </summary>
/// <param name="ipEndpoint">ip address and port of the server</param>
/// <param name="password"> password of the server</param>
/// <param name="rconEngine">engine to create the rcon connection to</param>
/// <returns>instance of rcon connection</returns>
IRConConnection CreateConnection(IPEndPoint ipEndpoint, string password, string rconEngine);
}
}