wmib.Extensions.InfobotWriter.SaveData C# (CSharp) Méthode

SaveData() public méthode

public SaveData ( ) : void
Résultat void
        public void SaveData()
        {
            foreach (Channel x in Configuration.ChannelList)
            {
                Infobot infobot = (Infobot)x.RetrieveObject("Infobot");
                if (infobot != null)
                {
                    if (infobot.stored == false)
                    {
                        infobot.stored = true;
                        infobot.Save();
                    }
                }
            }
        }