IsSupportedFile() public static method

public static IsSupportedFile ( string file ) : bool
file string
return bool
示例#1
0
        public override ProcessingPriority GetProcessingPriority(FileAndType file)
        {
            if (file.Type == DocumentType.Article && Utility.IsSupportedFile(file.File))
            {
                return(ProcessingPriority.High);
            }

            return(ProcessingPriority.NotSupported);
        }