MimeTypeInfo Structure

Provides the information stored in an Internet Media Type String ("MIME type").

Definition

Namespace: FolkerKinzel.MimeTypes
Assembly: FolkerKinzel.MimeTypes (in FolkerKinzel.MimeTypes.dll) Version: 1.0.0+7dd5ca03f25d4802263abb2083f9c7add2cb51ec
C#
public readonly struct MimeTypeInfo : ICloneable, 
	IEquatable<MimeTypeInfo>
Inheritance
Object    ValueType    MimeTypeInfo
Implements
ICloneable, IEquatableMimeTypeInfo

Remarks

  Tip

MimeTypeInfo is a quite large structure. Pass it to other methods by reference (in, ref or out parameters in C#)!

If you intend to hold a MimeTypeInfo for a long time in memory and if this MimeTypeInfo is parsed from a ReadOnlyMemory<Char> that comes from a very long String, keep in mind, that the MimeTypeInfo holds a reference to that String. Consider in this case to make a copy of the MimeTypeInfo structure with Clone: The copy is built on a separate String that is case-normalized and only as long as needed.

Example

Efficient parsing of an Internet Media Type String:

C#
using FolkerKinzel.MimeTypes;

namespace Examples;

public static class MimeTypeInfoExample
{
    public static void Example()
    {
        const string input = """
        This is some text before the MIME type.
                             text/plain; charset=iso-8859-1; (This is a comment.)
        second-parameter*0*=utf-8'en'For%20demonstration%20purposes%20o;
        second-parameter*1*=nly%2C%20with%20a%20few%20non-ASCII%20chara;
        second-parameter*2*=cters%20%C3%A4%C3%B6%C3%BC

                        This is some Text after the MIME type.
        """;

        // MimeTypeInfo parses a specified part of a longer string
        // without having to allocate a substring.
        // White space characters before and after the MIME type are accepted.
        // The return values of the properties are portions of the input in form
        // of ReadOnlySpan<char> structs.

        MimeTypeInfo info = MimeTypeInfo.Parse(input.AsMemory(39, 275));

        Console.WriteLine("Media Type: {0}", info.MediaType.ToString());
        Console.WriteLine("Sub Type:   {0}", info.SubType.ToString());
        Console.WriteLine();
        Console.WriteLine("Is empty:        {0}", info.IsEmpty);
        Console.WriteLine("Is text:         {0}", info.IsText);
        Console.WriteLine("Is plain text:   {0}", info.IsTextPlain);
        Console.WriteLine("Is octet stream: {0}", info.IsOctetStream);

        Console.WriteLine("The file type extension for this MIME type is \"{0}\".",
                           info.GetFileTypeExtension());

        int parameterCounter = 1;
        foreach (MimeTypeParameterInfo parameter in info.Parameters())
        {
            Console.WriteLine();
            Console.WriteLine($"Parameter {parameterCounter++}:");
            Console.WriteLine("============");
            Console.WriteLine($"Key:       {parameter.Key}");
            Console.WriteLine($"Value:     {parameter.Value}");
            Console.WriteLine($"Language:  {parameter.Language}");
            Console.WriteLine($"Charset:   {parameter.CharSet}");
            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);
        }
        Console.WriteLine();

        // Compare MimeTypeInfo values using options:
        MimeTypeInfo info2 = MimeTypeInfo.Parse("TEXT/PLAIN; CHARSET=UTF-8");
        Console.WriteLine("Equal with parameters:      {0}", info.Equals(in info2));
        Console.WriteLine("Equal without parameters:   {0}", info.Equals(in info2, ignoreParameters: true));

        Console.WriteLine();
        Console.WriteLine("Default:           {0}", info2.ToString());
        Console.WriteLine("Ignore Parameters: {0}", info2.ToString(MimeFormats.IgnoreParameters));
    }
}
/*
Console output: 

Media Type: text
Sub Type:   plain

Is empty:        False
Is text:         True
Is plain text:   True
Is octet stream: False
The file type extension for this MIME type is ".txt".

Parameter 1:
============
Key:       charset
Value:     iso-8859-1
Language:
Charset:
Is charset parameter:       True
Is ASCII charset parameter: False
Is access type parameter:   False
Is value case sensitive:    False

Parameter 2:
============
Key:       second-parameter
Value:     For demonstration purposes only, with a few non-ASCII characters äöü
Language:  en
Charset:   utf-8
Is charset parameter:       False
Is ASCII charset parameter: False
Is access type parameter:   False
Is value case sensitive:    True

Equal with parameters:      False
Equal without parameters:   True

Default:           text/plain; charset=utf-8
Ignore Parameters: text/plain
 */

Properties

Empty Gets an empty MimeTypeInfo structure.
IsEmpty Indicates whether the instance contains no data.
IsOctetStream Indicates whether this instance is equal to OctetStream. The parameters are not taken into account. The comparison is case-insensitive.
IsText Determines whether the MediaType of this instance equals "text". The comparison is case-insensitive.
IsTextPlain Indicates whether this instance is equal to the MIME type "text/plain". The parameters are not taken into account. The comparison is case-insensitive.
MediaType Gets the Top-Level Media Type. (The left part of a MIME-Type.)
SubType Gets the Sub Type. (The right part of a MIME-Type.)

Methods

AppendTo Appends a String representation of this instance according to RFC 2045 and RFC 2231 to the end of a StringBuilder.
Clone Creates a new MimeTypeInfo that is a copy of the current instance.
Equals(MimeTypeInfo) Determines whether the value of this instance is equal to the value of other. The Parameters are taken into account.
Equals(MimeTypeInfo) Determines whether the value of this instance is equal to the value of other. The Parameters are taken into account.
Equals(Object) Determines whether obj is a MimeTypeInfo structure whose value is equal to that of this instance. The Parameters are taken into account.
(Overrides ValueTypeEquals(Object))
Equals(MimeTypeInfo, Boolean) Determines whether this instance is equal to other and allows to specify whether or not the Parameters are taken into account.
GetFileTypeExtension Gets an appropriate file type extension for the MimeTypeInfo instance.
GetHashCode Creates a hash code for this instance, which takes the Parameters into account.
(Overrides ValueTypeGetHashCode)
GetHashCode(Boolean) Creates a hash code for this instance and allows to specify whether or not the Parameters are taken into account.
GetTypeGets the Type of the current instance.
(Inherited from Object)
Parameters Gets the parameters.
Parse(ReadOnlyMemoryChar) Parses a ReadOnlyMemory<Char> as MimeTypeInfo.
Parse(String) Parses a String as MimeTypeInfo.
ToString Serializes the instance as Internet Media Type String ("MIME type") using the Default format.
(Overrides ValueTypeToString)
ToString(MimeFormats, Int32) Serializes the instance as Internet Media Type String ("MIME type") with several options.
TryParse(ReadOnlyMemoryChar, MimeTypeInfo) Tries to parse a ReadOnlyMemory<Char> as MimeTypeInfo.
TryParse(String, MimeTypeInfo) Tries to parse a String as MimeTypeInfo.

Operators

Equality(MimeTypeInfo, MimeTypeInfo) Returns a value that indicates whether two specified MimeTypeInfo instances are equal. The Parameters are taken into account.
Inequality(MimeTypeInfo, MimeTypeInfo) Returns a value that indicates whether two specified MimeTypeInfo instances are not equal. The Parameters are taken into account.

Explicit Interface Implementations

ICloneableCloneCreates a new object that is a copy of the current instance.

See Also