ICertRegManagerDGetConfigEntryT Method (String, String) |
Gets the Certification Authority configuration registry entry value.
Namespace:
SysadminsLV.PKI.Dcom
Assembly:
SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 3.7.0.0 (3.7.0.0)
Syntax T GetConfigEntry<T>(
string entryName,
string node = null
)
Function GetConfigEntry(Of T) (
entryName As String,
Optional node As String = Nothing
) As T
generic<typename T>
T GetConfigEntry(
String^ entryName,
String^ node = nullptr
)
abstract GetConfigEntry :
entryName : string *
?node : string
(* Defaults:
let _node = defaultArg node null
*)
-> 'T
Parameters
- entryName
- Type: SystemString
Configuration value name to retrieve. - node (Optional)
- Type: SystemString
Configuration node path under Configuration node. Optional.
Type Parameters
- T
- Expected registry value type. Can be String, String[], Int32 or Byte[].
Return Value
Type:
T[Missing <returns> documentation for "M:SysadminsLV.PKI.Dcom.ICertRegManagerD.GetConfigEntry``1(System.String,System.String)"]
Exceptions Exception | Condition |
---|
ArgumentNullException | entryName parameter is null. |
ArgumentException | entryName parameter is empty string. |
FileNotFoundException | Requested entry name not found. |
See Also