ScriptObjectGetProperty(String, Object) Method |
Gets the value of a named script object property.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax public abstract Object GetProperty(
string name,
params Object[] args
)
Public MustOverride Function GetProperty (
name As String,
ParamArray args As Object()
) As Object
public:
virtual Object^ GetProperty(
String^ name,
... array<Object^>^ args
) abstract
abstract GetProperty :
name : string *
args : Object[] -> Object
Parameters
- name String
- The name of the property to get.
- args Object
- Optional arguments for property retrieval.
Return Value
ObjectThe value of the specified property.
Implements
IScriptObjectGetProperty(String, Object)See Also