예제 #1
0
        private void MenuItemUpdateAutoRating(object sender, EventArgs eventArgs)
        {
            _mbApiInterface.Library_QueryFiles("domain=SelectedFiles");
            string nextFile = _mbApiInterface.Library_QueryGetNextFile();

            while (!string.IsNullOrEmpty(nextFile))
            {
                UpdateAutoRating(nextFile);
                nextFile = _mbApiInterface.Library_QueryGetNextFile();
            }
        }