MimeTypeInfoTryParse(String, MimeTypeInfo) Method

Tries to parse a String as MimeTypeInfo.

Definition

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

Parameters

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