Click or drag to resize

ScriptEngineAddRestrictedHostObjectT(String, HostItemFlags, T) Method

Exposes a host object to script code with the specified type restriction and options.

Namespace: Microsoft.ClearScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax
public void AddRestrictedHostObject<T>(
	string itemName,
	HostItemFlags flags,
	T target
)

Parameters

itemName  String
A name for the new global script item that will represent the object.
flags  HostItemFlags
A value that selects options for the operation.
target  T
The object to expose.

Type Parameters

T
The type whose members are to be made accessible from script code.

Implements

IScriptEngineAddRestrictedHostObjectT(String, HostItemFlags, T)
Remarks

This method can be used to restrict script access to the members of a particular interface or base class.

For information about the mapping between host members and script-callable properties and methods, see AddHostObject(String, HostItemFlags, Object).

See Also