| ScribuntoEvaluationResultReturnValue Property |
This is preliminary documentation and is subject to change.
The string representation of the evaluation return value.
Namespace: WikiClientLibrary.ScribuntoAssembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax [JsonPropertyNameAttribute("return")]
public string ReturnValue { get; init; }
<JsonPropertyNameAttribute("return")>
Public Property ReturnValue As String
Get
Set
Dim instance As ScribuntoEvaluationResult
Dim value As String
value = instance.ReturnValue
instance.ReturnValue = value
public:
[JsonPropertyNameAttribute(L"return")]
property String^ ReturnValue {
String^ get ();
void set (String^ value);
}
[<JsonPropertyNameAttribute("return")>]
member ReturnValue : string with get, set
Property Value
StringRemarks
The returned value will be in its string representation.
For example, Lua nil will be CLR string "nil";
both Lua number 123 and string "123" will be CLR string "123".
See Also