Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
MediaTypeNames.cs
Go to the documentation of this file.
1namespace System.Net.Mime;
2
3public static class MediaTypeNames
4{
5 public static class Text
6 {
7 public const string Plain = "text/plain";
8
9 public const string Html = "text/html";
10
11 public const string Xml = "text/xml";
12
13 public const string RichText = "text/richtext";
14 }
15
16 public static class Application
17 {
18 public const string Soap = "application/soap+xml";
19
20 public const string Octet = "application/octet-stream";
21
22 public const string Rtf = "application/rtf";
23
24 public const string Pdf = "application/pdf";
25
26 public const string Zip = "application/zip";
27
28 public const string Json = "application/json";
29
30 public const string Xml = "application/xml";
31 }
32
33 public static class Image
34 {
35 public const string Gif = "image/gif";
36
37 public const string Tiff = "image/tiff";
38
39 public const string Jpeg = "image/jpeg";
40 }
41}