Creates a binary from the given value
function (optional
value
as nullable any, optionalencoding
as nullable any) as nullable any
Returns a binary
value from the given value
. If the given value
is null
, Binary.From
returns null
. If the given value
is binary
, value
is returned. Values of the following types can be converted to a binary
value:
If value
is of any other type, an error is returned.
Binary
Get the binary
value of "1011"
.
Binary.From("1011")
Binary.FromText("1011", BinaryEncoding.Base64)