IObjectGetPropertyT Method |
Returns the value of the specified property.
Namespace:
SmartBear.TestLeft.TestObjects
Assembly:
SmartBear.TestLeft (in SmartBear.TestLeft.dll) Version: 14.70.237.11 (14.70.237.11)
Syntax T GetProperty<T>(
string name,
params Object[] parameters
)
Function GetProperty(Of T) (
name As String,
ParamArray parameters As Object()
) As T
Dim instance As IObject
Dim name As String
Dim parameters As Object()
Dim returnValue As T
returnValue = instance.GetProperty(name,
parameters)
generic<typename T>
T GetProperty(
String^ name,
... array<Object^>^ parameters
)
Parameters
- name
- Type: SystemString
The property name. - parameters
- Type: SystemObject
An array of property parameters.
Type Parameters
- T
- The type of the object that will be returned.
Return Value
Type:
TThe property value converted to a value of the
T type.
Exceptions See Also