MimeTypeTryParse(String, MimeType) Method

Tries to parse a String as MimeType.

Definition

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

Parameters

value  String
The String 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