Click or drag to resize

ExtensionsToHostType(Type, ScriptEngine) Method

Converts a type to a host type for use with script code running in the specified script engine.

Namespace: Microsoft.ClearScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax
public static Object ToHostType(
	this Type type,
	ScriptEngine engine
)

Parameters

type  Type
The type to convert to a host type.
engine  ScriptEngine
The script engine in which the host type will be used.

Return Value

Object
A host type for use with script code.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Type. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also