MimeTypeTryParse(ReadOnlyMemoryChar, MimeType) Method

Tries to parse a ReadOnlyMemory<Char> as MimeType.

Definition

Namespace: FolkerKinzel.MimeTypes
Assembly: FolkerKinzel.MimeTypes (in FolkerKinzel.MimeTypes.dll) Version: 1.0.0+7dd5ca03f25d4802263abb2083f9c7add2cb51ec
C#
public static bool TryParse(
	 in ReadOnlyMemory<char> value,
	out MimeType?? mimeType
)

Parameters

value  ReadOnlyMemoryChar
The ReadOnlyMemory<Char> to parse.
mimeType  MimeType
When the method successfully returns, the parameter contains the MimeType parsed from value. The parameter is passed uninitialized.

Return Value

Boolean
true if value could be parsed as MimeType; otherwise, false.

See Also