[FlagsAttribute]
public enum MimeFormats
<FlagsAttribute>
Public Enumeration MimeFormats
[FlagsAttribute]
public enum class MimeFormats
[<FlagsAttribute>]
type MimeFormats
Format a MimeType instance into a standards-compliant string using several options:
using FolkerKinzel.MimeTypes;
namespace Examples;
public static class FormattingOptionsExample
{
public static void Example()
{
MimeType mimeType =
MimeType.Create("application", "x-stuff")
.AppendParameter("short", "s")
.AppendParameter("key-long",
"Very very loooong value in order to show the line wrapping");
Console.WriteLine("MimeFormats.Default:");
Console.WriteLine(mimeType.ToString());
Console.WriteLine();
Console.WriteLine("MimeFormats.IgnoreParameters:");
Console.WriteLine(mimeType.ToString(MimeFormats.IgnoreParameters));
Console.WriteLine();
Console.WriteLine("MimeFormats.AvoidSpace:");
Console.WriteLine(mimeType.ToString(MimeFormats.AvoidSpace));
Console.WriteLine();
Console.WriteLine("MimeFormats.LineWrapping:");
Console.WriteLine(mimeType.ToString(MimeFormats.LineWrapping));
Console.WriteLine();
Console.WriteLine("MimeFormats.LineWrapping | MimeFormats.AvoidSpace:");
Console.WriteLine(mimeType.ToString(MimeFormats.LineWrapping | MimeFormats.AvoidSpace));
Console.WriteLine();
Console.WriteLine("MimeFormats.Url:");
Console.WriteLine(mimeType.ToString(MimeFormats.Url));
Console.WriteLine();
}
}
/*
Console Output:
MimeFormats.Default:
application/x-stuff; short=s; key-long="Very very loooong value in order to show the line wrapping"
MimeFormats.IgnoreParameters:
application/x-stuff
MimeFormats.AvoidSpace:
application/x-stuff;short=s;key-long="Very very loooong value in order to show the line wrapping"
MimeFormats.LineWrapping:
application/x-stuff; short=s;
key-long*0="Very very loooong value in order to show the line ";
key-long*1="wrapping"
MimeFormats.LineWrapping | MimeFormats.AvoidSpace:
application/x-stuff;short=s;
key-long*0="Very very loooong value in order to show the line ";
key-long*1="wrapping"
MimeFormats.Url:
application/x-stuff;short=s;key-long*=utf-8''Very%20very%20loooong%20value%20in%20order%20to%20show%20the%20line%20wrapping
*/
Default | 0 | Specifies the default format (including the Parameters, without line wrapping, and with one SPACE character (U+0020) before each parameter). |
IgnoreParameters | 1 | Specifies that the Parameters are not included in the output and any other option is ignored. |
AvoidSpace | 2 | Specifies that white space before a parameter is omitted. |
Url | 6 | Specifies that the output is formatted for the use within a URI. This option is combined with AvoidSpace. |
LineWrapping | 8 | Specifies that long parameters will be wrapped according to RFC 2231 if its length exceeds a given maximum. This option is ignored if any of the flags IgnoreParameters or Url is set. |