ScriptEngineUndefinedImportValue Property |
Gets or sets the script engine's undefined import value.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax public Object UndefinedImportValue { get; set; }
Public Property UndefinedImportValue As Object
Get
Set
public:
virtual property Object^ UndefinedImportValue {
Object^ get () sealed;
void set (Object^ value) sealed;
}
abstract UndefinedImportValue : Object with get, set
override UndefinedImportValue : Object with get, set
Property Value
ObjectImplements
IScriptEngineUndefinedImportValueRemarks
Some script languages support one or more special non-
null values that represent
nonexistent, missing, unknown, or undefined data. When such a value is marshaled to the
host, the script engine maps it to the value of this property. The default value is
Undefined.Value.
See Also