DataUrlTryParse(ReadOnlyMemoryChar, DataUrlInfo) Method
Namespace: FolkerKinzel.DataUrlsAssembly: FolkerKinzel.DataUrls (in FolkerKinzel.DataUrls.dll) Version: 2.0.7+f420e766440407ca7bfdc5c20bddf380fd0dd65f
public static bool TryParse(
ReadOnlyMemory<char> value,
out DataUrlInfo info
)
Public Shared Function TryParse (
value As ReadOnlyMemory(Of Char),
<OutAttribute> ByRef info As DataUrlInfo
) As Boolean
public:
static bool TryParse(
ReadOnlyMemory<wchar_t> value,
[OutAttribute] DataUrlInfo% info
)
static member TryParse :
value : ReadOnlyMemory<char> *
info : DataUrlInfo byref -> bool
- value ReadOnlyMemoryChar
- The ReadOnlyMemory<Char> to parse.
- info DataUrlInfo
- If the method returns true, the parameter contains a DataUrlInfo
structure that provides the contents
of the "data" URL. The parameter is passed uninitialized.
Booleantrue if
value could be parsed as
DataUrlInfo,
false otherwise.