MimeTypeInfoTryParse(ReadOnlyMemoryChar, MimeTypeInfo) Method

Tries to parse a ReadOnlyMemory<Char> as MimeTypeInfo.

Definition

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

Parameters

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

Return Value

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

See Also