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