public static MimeMapper FromApacheFile(string path, PathResolver pathResolver) { Dictionary <string, string> extToMime = ParseApacheFile(path); return(new MimeMapper(extToMime, pathResolver)); }
public MimeMapper(Dictionary <string, string> extToMimeMap, PathResolver pathResolver) { extensionToMimeMap = extToMimeMap; this.pathResolver = pathResolver; }