HostFunctionsisTypeObj Method (Object) |
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.ClearScript
Assembly:
ClearScript.Core (in ClearScript.Core.dll) Version: 7.2.5
Syntaxpublic bool isTypeObj(
Object value
)
Public Function isTypeObj (
value As Object
) As Boolean
public:
bool isTypeObj(
Object^ value
)
member isTypeObj :
value : Object -> bool
Parameters
- value
- Type: SystemObject
The object to test.
Return Value
Type:
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