public static INeedsContentEncoding ContentType(
     this INeedsContentType target,
     string contentType)
 {
     return(new Builder(target.Root
                        .Argument("fileStore", c => c.Argument("contentType", contentType))));
 }
 public static INeedsContentEncoding DefaultContentType(
     this INeedsContentType target)
 {
     return(target.ContentType("application/octet-stream"));
 }