Pdelvo.Minecraft.Proxy.Library.RemoteServerInfo.RemoteServerInfo C# (CSharp) Méthode

RemoteServerInfo() public méthode

Create a new instance of the RemoteServerInfo class
public RemoteServerInfo ( string name, IPEndPoint endPoint, int minecraftVersion ) : System.Net
name string The name of the backend server
endPoint System.Net.IPEndPoint The ip end point of the backend server
minecraftVersion int The minecraft version of the backend server, null for auto detection
Résultat System.Net
        public RemoteServerInfo(string name, IPEndPoint endPoint, int? minecraftVersion)
        {
            Name = name;
            EndPoint = endPoint;
            MinecraftVersion = minecraftVersion;
        }
RemoteServerInfo