BaseConfigManagergetMinValue Method |
Returns minimum allowed value for given variable.
If there is no minimum allowed value, throws an InvalidInputException.
As of FactSetOnDemand 3.0, the minimum allowed values are:
Timeout: 1
HTTPSRetries: 0
Namespace:
Kratos_3.Config
Assembly:
Kratos_3 (in Kratos_3.dll) Version: 3.6.2.0 (3.6.2.0)
Syntaxpublic int getMinValue(
ConfigOptions name
)
Public Function getMinValue (
name As ConfigOptions
) As Integer
public:
virtual int getMinValue(
ConfigOptions name
) sealed
abstract getMinValue :
name : ConfigOptions -> int
override getMinValue :
name : ConfigOptions -> int
Parameters
- name
- Type: ConfigOptions
Variable to check minimum value of
Return Value
Type:
Int32Minimum value allowed for variable
ExceptionsException | Condition |
---|
InvalidInputException | Thrown if the given variable does not have a minimum allowed value |
See Also