public bool saveConfig()    //設定ファイル保存
        {
            configure conf = new configure();

            conf.url     = service.getUrl();
            conf.rodos   = bot.rodos;
            conf.chp     = bot.chp;
            conf.xmlFile = chpFile;
            bool result = XmlFileIO.xmlSave(conf.GetType(), getFilename(), conf);

            logOutput.writeLog("設定ファイルを保存しました。");

            return(true);
        }