File tree Expand file tree Collapse file tree 4 files changed +13
-1
lines changed
Expand file tree Collapse file tree 4 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ public class ApplicationTests
1414 [ TestCase ( MimeType . Application . Javascript , "application/javascript" ) ]
1515 [ TestCase ( MimeType . Application . Json , "application/json" ) ]
1616 [ TestCase ( MimeType . Application . LdJson , "application/ld+json" ) ]
17+ [ TestCase ( MimeType . Application . ManifestJson , "application/manifest+json" ) ]
1718 [ TestCase ( MimeType . Application . Mp4 , "application/mp4" ) ]
1819 [ TestCase ( MimeType . Application . Msword , "application/msword" ) ]
1920 [ TestCase ( MimeType . Application . OctetStream , "application/octet-stream" ) ]
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ public class TextTests
1010 [ TestCase ( MimeType . Text . Csv , "text/csv" ) ]
1111 [ TestCase ( MimeType . Text . Html , "text/html" ) ]
1212 [ TestCase ( MimeType . Text . Javascript , "text/javascript" ) ]
13+ [ TestCase ( MimeType . Text . Markdown , "text/markdown" ) ]
1314 [ TestCase ( MimeType . Text . Plain , "text/plain" ) ]
1415 [ TestCase ( MimeType . Text . RichText , "text/richtext" ) ]
1516 [ TestCase ( MimeType . Text . Sgml , "text/sgml" ) ]
Original file line number Diff line number Diff line change @@ -54,6 +54,11 @@ public static class Application
5454 /// </summary>
5555 public const string LdJson = Prefix + "ld+json" ;
5656
57+ /// <summary>
58+ /// application/manifest+json
59+ /// </summary>
60+ public const string ManifestJson = Prefix + "manifest+json" ;
61+
5762 /// <summary>
5863 /// application/mp4
5964 /// </summary>
Original file line number Diff line number Diff line change @@ -34,6 +34,11 @@ public static class Text
3434 /// </summary>
3535 public const string Javascript = Prefix + "javascript" ;
3636
37+ /// <summary>
38+ /// text/markdown
39+ /// </summary>
40+ public const string Markdown = Prefix + "markdown" ;
41+
3742 /// <summary>
3843 /// text/plain
3944 /// </summary>
@@ -59,4 +64,4 @@ public static class Text
5964 /// </summary>
6065 public const string Yaml = Prefix + "yaml" ;
6166 }
62- }
67+ }
You can’t perform that action at this time.
0 commit comments