CSL.SettingsHandler.GetDownloadFormatExists C# (CSharp) Method

GetDownloadFormatExists() public static method

public static GetDownloadFormatExists ( string format ) : bool
format string
return bool
        public static bool GetDownloadFormatExists(string format)
        {
            if (settings.DownloadFormats.Contains(format))
                return true;
            else
                return false;
        }