MimeTypeTryParse(String, MimeType) Method
Namespace: FolkerKinzel.MimeTypesAssembly: FolkerKinzel.MimeTypes (in FolkerKinzel.MimeTypes.dll) Version: 1.0.0+7dd5ca03f25d4802263abb2083f9c7add2cb51ec
public static bool TryParse(
string? value,
out MimeType?? mimeType
)
Public Shared Function TryParse (
value As String,
<OutAttribute> ByRef mimeType As MimeType
) As Boolean
public:
static bool TryParse(
String^ value,
[OutAttribute] MimeType^% mimeType
)
static member TryParse :
value : string *
mimeType : MimeType byref -> bool
- 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.
Booleantrue if
value could be parsed as
MimeType;
otherwise,
false.