FeaturesGetIntValue Method (String, String, Enum) |
Returns a value as an integer (presumably to be interpreted as an enumeration 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 int GetIntValue(
string featureName,
string propertyName,
Enum defaultValue
)
Public Function GetIntValue (
featureName As String,
propertyName As String,
defaultValue As Enum
) As Integer
Parameters
- featureName
- Type: SystemString
The name of the feature. - propertyName
- Type: SystemString
The property name. - defaultValue
- Type: SystemEnum
The enumeration default value if the property doesn't exist.
Return Value
Type:
Int32The value of the property as an integer, but presumably to be interpreted as an enumeration value.
See Also