Click or drag to resize

ScriptEngineAddRestrictedHostObjectT Method (String, HostItemFlags, T)

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.2.3
Syntax
public void AddRestrictedHostObject<T>(
	string itemName,
	HostItemFlags flags,
	T target
)

Parameters

itemName
Type: SystemString
A name for the new global script item that will represent the object.
flags
Type: Microsoft.ClearScriptHostItemFlags
A value that selects options for the operation.
target
Type: T
The object to expose.

Type Parameters

T
The type whose members are to be made accessible from script code.
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