Beispiel #1
0
 public static bool HasExtension(this HttpPostedFileBase file, IEnumerable <string> expectedExtensions)
 {
     return(file.HasContentType(MimeTypeHelper.GetMany(expectedExtensions)));
 }