Click or drag to resize

HostFunctionsgetProperty(IDynamicMetaObjectProvider, String) Method

Gets the value of a property in a dynamic host object that implements IDynamicMetaObjectProvider.

Namespace: Microsoft.ClearScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax
public Object getProperty(
	IDynamicMetaObjectProvider target,
	string name
)

Parameters

target  IDynamicMetaObjectProvider
The dynamic host object that contains the property to get.
name  String
The name of the property to get.

Return Value

Object
The value of the specified property.
Remarks
This function is provided for script languages that do not support dynamic properties.
See Also