|
BroConfigurationTryGetValue Method (String, Double) |
Attempts to retrieve
Double based value from the configuration.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public static bool TryGetValue(
string valueName,
out double value
)
Public Shared Function TryGetValue (
valueName As String,
<OutAttribute> ByRef value As Double
) As Boolean
static member TryGetValue :
valueName : string *
value : float byref -> bool
public static boolean TryGetValue(
String valueName,
/** @attribute OutAttribute */ /** @ref */double value
)
BroccoliSharp.BroConfiguration.TryGetValue = function(valueName, value);
Parameters
- valueName
- Type: SystemString
Key name for the value to retrieve. - value
- Type: SystemDouble
The retrieved value.
Return Value
Type:
Booleantrue if
valueName was found; otherwise,
false.
See Also