Click or drag to resize

HostFunctionssetElement Method

Sets an element value in a dynamic host object that implements IDynamicMetaObjectProvider.

Namespace:  Microsoft.ClearScript
Assembly:  ClearScript.Core (in ClearScript.Core.dll) Version: 7.2.3
Syntax
public Object setElement(
	IDynamicMetaObjectProvider target,
	Object value,
	params Object[] indices
)

Parameters

target
Type: System.DynamicIDynamicMetaObjectProvider
The dynamic host object that contains the element to set.
value
Type: SystemObject
The new value of the element.
indices
Type: SystemObject
One or more indices that identify the element to set.

Return Value

Type: Object
The result of the operation, which is usually the value assigned to the specified element.
Remarks
This function is provided for script languages that do not support general indexing.
See Also