HostFunctionsisTypeObj(Object) Method |
Determines whether an object is a host type. This version is invoked if the specified
object cannot be used as a type argument.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax public bool isTypeObj(
Object value
)
Public Function isTypeObj (
value As Object
) As Boolean
public:
bool isTypeObj(
Object^ value
)
member isTypeObj :
value : Object -> bool
Parameters
- value Object
- The object to test.
Return Value
BooleanTrue if
value is a host type,
false otherwise.
Remarks
This function is overloaded with
isTypeObjT and selected at runtime if
value cannot be used as a type argument. Note that this applies to
some host types; examples are static types and overloaded generic type groups.
See Also