PropertiesGetValue Method |
Returns a value for a property in the collection. If the property doesn't exist, then the defaultValue is returned.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public Object GetValue(
string name,
Object defaultValue
)
Public Function GetValue (
name As String,
defaultValue As Object
) As Object
Parameters
- name
- Type: SystemString
The name of the property for which to get the value. - defaultValue
- Type: SystemObject
The value to return if the specified property does not exist.
Return Value
Type:
ObjectThe property's value, if found, else the defaultValue.
See Also