Class GetScriptSourceResult
public sealed record GetScriptSourceResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<GetScriptSourceResult>
- Inheritance
-
EmptyResultGetScriptSourceResult
- Implements
-
IEquatable<EmptyResult>
- Inherited Members
-
EmptyResult.ToString()EmptyResult.GetHashCode()EmptyResult.Equals(EmptyResult)EmptyResult.<Clone>$()EmptyResult.AdditionalDataEmptyResult.AdditionalMessageData
Constructors
GetScriptSourceResult(string, string?)
public GetScriptSourceResult(string ScriptSource, string? Bytecode)
Parameters
ScriptSourcestringScript source (empty in case of Wasm bytecode).
BytecodestringWasm bytecode. (Encoded as a base64 string when passed over JSON)
Properties
Bytecode
Wasm bytecode. (Encoded as a base64 string when passed over JSON)
public string? Bytecode { get; init; }
Property Value
ScriptSource
Script source (empty in case of Wasm bytecode).
public string ScriptSource { get; init; }