public void Send(string command, bool nonewline = false) { if (Interactive) { if (nonewline == true) { RCONServer.Send(Client, command); } else { RCONServer.Send(Client, command + (!command.Contains('\n') ? "\r\n" : "")); } return; } }
public string Read() { return(RCONServer.Read(Client, Authenticated)); }
public string Read() { return(RCONServer.Read(Client)); }