ScriptEngineUndefinedImportValue Property |
Gets or sets the engine's undefined import value.
Namespace:
Microsoft.ClearScript
Assembly:
ClearScript.Core (in ClearScript.Core.dll) Version: 7.3.1
Syntaxpublic Object UndefinedImportValue { get; set; }
Public Property UndefinedImportValue As Object
Get
Set
public:
property Object^ UndefinedImportValue {
Object^ get ();
void set (Object^ value);
}
member UndefinedImportValue : Object with get, set
Property Value
Type:
Object
Remarks
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