Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Base64UrlDecode.cs
1using Waher.Content;
5
7{
12 {
22 {
23 }
24
28 public override string FunctionName => nameof(Base64UrlDecode);
29
37 {
39 }
40
41 }
42}
Static class that does BASE64URL encoding (using URL and filename safe alphabet), as defined in RFC46...
Definition: Base64Url.cs:11
static byte[] Decode(string Base64Url)
Converts a Base64URL-encoded string to its binary representation.
Definition: Base64Url.cs:17
Base64UrlDecode(ScriptNode Base64Url, int Start, int Length, Expression Expression)
Base64UrlDecode(Base64Url)
override IElement EvaluateScalar(string Argument, Variables Variables)
Evaluates the function on a scalar argument.
override string FunctionName
Name of the function
Class managing a script expression.
Definition: Expression.cs:39
Base class for funcions of one scalar string variable.
ScriptNode Argument
Function argument.
Base class for all nodes in a parsed script tree.
Definition: ScriptNode.cs:69
int Length
Length of expression covered by node.
Definition: ScriptNode.cs:101
int Start
Start position in script expression.
Definition: ScriptNode.cs:92
Collection of variables.
Definition: Variables.cs:25
Basic interface for all types of elements.
Definition: IElement.cs:20