GetPropertyList Method (TestObject)

Action

Returns a list of property names that can be retrieved for the given object.

Syntax

C#
propertyList = testObject.GetPropertyList()
VB
propertyList = testObject.GetPropertyList()
Variable Description
propertyList List(Of String).

Examples

C#

List<string> propertyList = testObject.GetPropertyList();

VB

Dim propertyList As List(Of String)
propertyList = testObject.GetPropertyList()