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 featureName,
string propertyName,
Object defaultValue
)
Public Function GetValue (
featureName As String,
propertyName As String,
defaultValue As Object
) As Object
Parameters
- featureName
- Type: SystemString
The name of the feature. - propertyName
- Type: SystemString
The name of the property - defaultValue
- Type: SystemObject
The default value if the feature is missing or the property isn't defined on the feature object.
Return Value
Type:
ObjectThe value for the specified feature property if found, else the provided default.
See Also