ScriptEngineVoidResultValue Property |
Gets or sets the engine's void result export value.
Namespace:
Microsoft.ClearScript
Assembly:
ClearScript.Core (in ClearScript.Core.dll) Version: 7.3.1
Syntaxpublic Object VoidResultValue { get; set; }
Public Property VoidResultValue As Object
Get
Set
public:
property Object^ VoidResultValue {
Object^ get ();
void set (Object^ value);
}
member VoidResultValue : Object with get, set
Property Value
Type:
Object
Remarks
Some script languages expect every subroutine call to return a value. When script code
written in such a language invokes a host method that explicitly returns no value (such
as a C#
void
method), the script engine returns the value of this property as a dummy result. The
default value is
VoidResult.Value.
See Also