コード例 #1
0
        public static SoundBoxServer LoadFromIP(string ipAddress)
        {
            string         url    = string.Format(URL_SYSTEM_INFO, ipAddress);
            SoundBoxServer server = JsonLoader.LoadFromURL <SoundBoxServer>(url);

            server.IPAddress = ipAddress;
            return(server);
        }