IW4M-Admin/SharedLibraryCore/Interfaces/IRConConnectionFactory.cs
2021-07-11 17:26:30 -05:00

20 lines
705 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);
}
}