SessionGetValue Method (String, String) |
Returns the value of the property for the name.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public Object GetValue(
string name,
string defaultValue
)
Public Function GetValue (
name As String,
defaultValue As String
) As Object
Parameters
- name
- Type: SystemString
The name of the property - defaultValue
- Type: SystemString
The default value to return if the property isn't found.
Return Value
Type:
ObjectThe property value.
Remarks Note that this method uses reflection to find the member with the supplied name first. If the member isn't found the internal Properties collection is queried.
See Also