DataUrlTryParse(ReadOnlyMemoryChar, DataUrlInfo) Method
Namespace: FolkerKinzel.DataUrlsAssembly: FolkerKinzel.DataUrls (in FolkerKinzel.DataUrls.dll) Version: 1.0.0+b1c843815044ca6fd87a144c9ff16386002c6473
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.