Click or drag to resize

HostFunctionsisNull Method

Determines whether the specified value is null.

Namespace:  Microsoft.ClearScript
Assembly:  ClearScript.Core (in ClearScript.Core.dll) Version: 7.2.3
Syntax
public bool isNull(
	Object value
)

Parameters

value
Type: SystemObject
The value to test.

Return Value

Type: Boolean
True if value is null, false otherwise.
Remarks
Use this function to test field, property, and method return values when null result wrapping is in effect (see WrapNullResult and EnableNullResultWrapping).
See Also