Modified GetMimeType to return binary type if there is no extension.
This commit is contained in:
parent
cf477522c0
commit
b9e1f2ca7d
@ -10,8 +10,8 @@ namespace MontoyaTech.Rest.Net
|
|||||||
{
|
{
|
||||||
public static string GetMimeType(this string extension)
|
public static string GetMimeType(this string extension)
|
||||||
{
|
{
|
||||||
if (extension == null)
|
if (string.IsNullOrWhiteSpace(extension))
|
||||||
throw new ArgumentNullException("extension");
|
return "application/octet-stream";
|
||||||
|
|
||||||
if (extension.StartsWith("."))
|
if (extension.StartsWith("."))
|
||||||
extension = extension.Substring(1);
|
extension = extension.Substring(1);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user