Example #1
0
        public bool IsMP3(HttpPostedFileBase file)
        {
            if (file != null)
            {
                return(checkFile.CheckMP3(file));
            }

            return(true);
        }