CertSrvRegManagerGetNumericConfigEntry Method |
Gets the Certification Authority configuration registry entry numerical (integer) value.
Namespace:
SysadminsLV.PKI.Management.CertificateServices
Assembly:
SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 3.7.0.0 (3.7.0.0)
Syntax public int GetNumericConfigEntry(
string entryName,
string node = null
)
Public Function GetNumericConfigEntry (
entryName As String,
Optional node As String = Nothing
) As Integer
public:
virtual int GetNumericConfigEntry(
String^ entryName,
String^ node = nullptr
) sealed
abstract GetNumericConfigEntry :
entryName : string *
?node : string
(* Defaults:
let _node = defaultArg node null
*)
-> int
override GetNumericConfigEntry :
entryName : string *
?node : string
(* Defaults:
let _node = defaultArg node null
*)
-> int
Parameters
- entryName
- Type: SystemString
Configuration value name to retrieve. - node (Optional)
- Type: SystemString
Configuration node path under Configuration node. Optional.
Return Value
Type:
Int32Requested entry value. If configuration entry does not exist, the method returns null.
Implements
ICertRegManagerDGetNumericConfigEntry(String, String)Exceptions Exception | Condition |
---|
ArgumentNullException | entryName parameter is null. |
ArgumentException | entryName parameter is empty string. |
FileNotFoundException | Requested entry name not found. |
See Also