Base58EncodingTryDecode - метод
Decode an encoded character buffer into a pre-allocated output buffer.
Пространство имён: Tessa.Tokens.EncodingsСборка: Tessa (в Tessa.dll) Версия: 4.1.3+7e2b1422f9b8c7c41fbbc4b151a843bed05319ab
public bool TryDecode(
ReadOnlySpan<char> input,
Span<byte> output,
out int numBytesWritten
)
Public Function TryDecode (
input As ReadOnlySpan(Of Char),
output As Span(Of Byte),
<OutAttribute> ByRef numBytesWritten As Integer
) As Boolean
public:
bool TryDecode(
ReadOnlySpan<wchar_t> input,
Span<unsigned char> output,
[OutAttribute] int% numBytesWritten
)
member TryDecode :
input : ReadOnlySpan<char> *
output : Span<byte> *
numBytesWritten : int byref -> bool
- input ReadOnlySpanChar
- Encoded text.
- output SpanByte
- Output buffer.
- numBytesWritten Int32
- Actual number of bytes written to the output.
BooleanWhether decoding was successful. If false, the value of
numBytesWritten
will be zero and the content of
output will be undefined.