public sealed class MimeTypeParameter : IComparable<MimeTypeParameter>,
IEquatable<MimeTypeParameter>
Public NotInheritable Class MimeTypeParameter
Implements IComparable(Of MimeTypeParameter), IEquatable(Of MimeTypeParameter)
public ref class MimeTypeParameter sealed : IComparable<MimeTypeParameter^>,
IEquatable<MimeTypeParameter^>
[<SealedAttribute>]
type MimeTypeParameter =
class
interface IComparable<MimeTypeParameter>
interface IEquatable<MimeTypeParameter>
end
Building, serializing, parsing, and editing of MimeType instances:
using FolkerKinzel.MimeTypes;
namespace Examples;
public static class BuildAndParseExample
{
public static void Example()
{
const string longParameterValue = """
This is a very long parameter that will be wrapped according to RFC 2231.
It also contains a few Non-ASCII-Characters: äöß.
""";
MimeType mimeType1 =
MimeType.Create("application", "x-stuff")
.AppendParameter("first-parameter", longParameterValue, "en")
.AppendParameter("second-parameter", "Parameter with \\, = and \".");
string s = mimeType1.ToString(MimeFormats.LineWrapping);
Console.WriteLine(s);
var mimeType2 = MimeType.Parse(s);
Console.WriteLine();
Console.WriteLine("Media Type: {0}", mimeType2.MediaType);
Console.WriteLine("Sub Type: {0}", mimeType2.SubType);
Console.WriteLine();
Console.WriteLine("Is text: {0}", mimeType2.IsText);
Console.WriteLine("Is plain text: {0}", mimeType2.IsTextPlain);
Console.WriteLine("Is octet stream: {0}", mimeType2.IsOctetStream);
int parameterCounter = 1;
foreach (MimeTypeParameter parameter in mimeType2.Parameters)
{
Console.WriteLine();
Console.WriteLine($"Parameter {parameterCounter++}:");
Console.WriteLine("============");
Console.WriteLine($"Key: {parameter.Key}");
Console.WriteLine($"Language: {parameter.Language}");
Console.WriteLine("Value:");
Console.WriteLine(parameter.Value);
Console.WriteLine();
Console.WriteLine("Is charset parameter: {0}", parameter.IsCharSetParameter);
Console.WriteLine("Is ASCII charset parameter: {0}", parameter.IsAsciiCharSetParameter);
Console.WriteLine("Is access type parameter: {0}", parameter.IsAccessTypeParameter);
Console.WriteLine("Is value case sensitive: {0}", parameter.IsValueCaseSensitive);
}
// The MimeType class allows to modify the parameters:
mimeType2.RemoveParameter("first-parameter")
.AppendParameter("Second-Parameter", "normal");
Console.WriteLine();
Console.Write("mimeType2 modified: ");
Console.WriteLine(mimeType2);
}
}
/*
Console Output:
application/x-stuff;
first-parameter*0*=utf-8'en'This%20is%20a%20very%20long%20param;
first-parameter*1*=eter%20that%20will%20be%20wrapped%20accordin;
first-parameter*2*=g%20to%20RFC%202231.%0D%0AIt%20also%20contai;
first-parameter*3*=ns%20a%20few%20Non-ASCII-Characters%3A%20%C3;
first-parameter*4*=%A4%C3%B6%C3%9F.;
second-parameter="Parameter with \\, = and \"."
Media Type: application
Sub Type: x-stuff
Is text: False
Is plain text: False
Is octet stream: False
Parameter 1:
============
Key: first-parameter
Language: en
Value:
This is a very long parameter that will be wrapped according to RFC 2231.
It also contains a few Non-ASCII-Characters: äöß.
Is charset parameter: False
Is ASCII charset parameter: False
Is access type parameter: False
Is value case sensitive: True
Parameter 2:
============
Key: second-parameter
Language:
Value:
Parameter with \, = and ".
Is charset parameter: False
Is ASCII charset parameter: False
Is access type parameter: False
Is value case sensitive: True
mimeType2 modified: application/x-stuff; second-parameter=normal
*/
Formatting 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
*/
Comparison of MimeType instances:
using FolkerKinzel.MimeTypes;
namespace Examples;
public static class EqualityExample
{
public static void Example()
{
const string media1 = "text/plain; charset=us-ascii";
const string media2 = "TEXT/PLAIN";
const string media3 = "TEXT/HTML";
const string media4 = "text/plain; charset=iso-8859-1";
const string media5 = "TEXT/PLAIN; CHARSET=ISO-8859-1";
const string media6 = "text/plain; charset=iso-8859-1; other-parameter=other_value";
const string media7 = "text/plain; OTHER-PARAMETER=other_value; charset=ISO-8859-1";
const string media8 = "text/plain; charset=iso-8859-1; other-parameter=OTHER_VALUE";
if (MimeType.Parse(media1) == MimeType.Parse(media2) &&
MimeType.Parse(media2) != MimeType.Parse(media3) &&
MimeType.Parse(media2) != MimeType.Parse(media4) &&
MimeType.Parse(media2).Equals(MimeType.Parse(media4), ignoreParameters: true) &&
MimeType.Parse(media4) == MimeType.Parse(media5) &&
MimeType.Parse(media4) != MimeType.Parse(media6) &&
MimeType.Parse(media6) == MimeType.Parse(media7) &&
MimeType.Parse(media6) != MimeType.Parse(media8))
{
Console.WriteLine("Success");
}
else
{
Console.WriteLine("Error");
}
}
}
// Console Output: Success
IsAccessTypeParameter | Indicates whether the MimeTypeParameterInfo has the Key "access-type". The comparison is case-insensitive. |
IsAsciiCharSetParameter | Indicates whether this instance equals "charset=us-ascii". The comparison is case-insensitive. |
IsCharSetParameter | Indicates whether the MimeTypeParameterInfo has the Key "charset". The comparison is case-insensitive. |
IsValueCaseSensitive | Indicates whether the Value should be treated case sensitive. |
Key | Gets the name of the parameter. |
Language | Gets an IETF-Language tag that indicates the language of the parameter's value. |
Value | Gets the value of the parameter. |
AppendTo | Appends a String representation of this instance according to RFC 2045 and RFC 2231 to a StringBuilder. |
CompareTo | Compares the current instance with another MimeTypeParameter and returns an Int32 that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other MimeTypeParameter. |
Equals(MimeTypeParameter) | Determines if the content of other is equal to that of the current instance. |
Equals(Object) |
Determines whether obj is a MimeTypeParameter object
whose content is equal to that of the current instance.
(Overrides ObjectEquals(Object)) |
GetHashCode |
Computes a hash code for the instance.
(Overrides ObjectGetHashCode) |
GetType | Gets the Type of the current instance. (Inherited from Object) |
ToString |
Creates a String representation of the instance.
(Overrides ObjectToString) |
ToString(Boolean) | Creates a String representation of the instance. |
Equality(MimeTypeParameter, MimeTypeParameter) | Returns a value that indicates whether two specified MimeTypeParameter instances are equal. |
Inequality(MimeTypeParameter, MimeTypeParameter) | Returns a value that indicates whether two specified MimeTypeParameter instances are not equal. |