Pdelvo.Minecraft.Proxy.Library.RemoteServerInfo.RemoteServerInfo C# (CSharp) 메소드

RemoteServerInfo() 공개 메소드

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
리턴 System.Net
        public RemoteServerInfo(string name, IPEndPoint endPoint, int? minecraftVersion)
        {
            Name = name;
            EndPoint = endPoint;
            MinecraftVersion = minecraftVersion;
        }
RemoteServerInfo