Click or drag to resize

ExtendedHostFunctionstype Method (String, String, Object)

Imports a host type by name from the specified assembly.

Namespace:  Microsoft.ClearScript
Assembly:  ClearScript.Core (in ClearScript.Core.dll) Version: 7.2.4
Syntax
public Object type(
	string name,
	string assemblyName,
	params Object[] hostTypeArgs
)

Parameters

name
Type: SystemString
The fully qualified name of the host type to import.
assemblyName
Type: SystemString
The name of the assembly that contains the host type to import.
hostTypeArgs
Type: SystemObject
Optional generic type arguments.

Return Value

Type: Object
The imported host type.
Remarks

Host types are imported in the form of objects whose properties and methods are bound to the host type's static members and nested types. If name refers to a generic type, the corresponding object will be invocable with type arguments to yield a specific type.

For more information about the mapping between host members and script-callable properties and methods, see AddHostObject.

Examples
The following code imports Enumerable and uses it to create an array of strings. It assumes that an instance of ExtendedHostFunctions is exposed under the name "host" (see AddHostObject).
JavaScript
var EnumerableT = host.type("System.Linq.Enumerable", "System.Core");
var Int32T = host.type("System.Int32");
var StringT = host.type("System.String");
var SelectorT = host.type("System.Func", Int32T, StringT);
var selector = host.del(SelectorT, function (num) { return StringT.Format("The number is {0}.", num); });
var array = EnumerableT.Range(0, 5).Select(selector).ToArray();
See Also