HostFunctionsisTypeObjT Method |
Determines whether an object is a host type. This version is invoked if the specified
object can be used as a type argument.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.3
Syntaxpublic bool isTypeObj<T>()
Public Function isTypeObj(Of T) As Boolean
public:
generic<typename T>
bool isTypeObj()
member isTypeObj : unit -> bool
Type Parameters
- T
- The host type (ignored).
Return Value
BooleanTrue.
Remarks
This function is overloaded with
isTypeObj(Object) and selected at
runtime if
T can be used as a type argument. Because type
arguments are always host types, this method ignores its type argument and always
returns
true.
See Also