Click or drag to resize

CertSrvRegManager.SetConfigEntry Method

Writes value to Certification Authority configuration. If value does not exist it will be created. Created registry value type is inferred from data parameter.

Namespace:  SysadminsLV.PKI.Management.CertificateServices
Assembly:  SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 3.7.0.0 (3.7.0.0)
Syntax
public void SetConfigEntry(
	Object data,
	string entryName,
	string node = null
)

Parameters

data
Type: System.Object
Configuration value name to write.
entryName
Type: System.String
Configuration value name to write to.
node (Optional)
Type: System.String
Configuration node path under Configuration node. Optional.

Implements

ICertRegManagerD.SetConfigEntry(Object, String, String)
Exceptions
ExceptionCondition
ArgumentNullExceptiondata or entryName parameter is null.
ArgumentExceptionentryName parameter is empty string, or data type for data parameter is not accepted. See remarks section for valid types.
Remarks
Valid types for data parameter are:
  • String
  • String[]
  • Int32
  • Boolean
  • Byte[]
See Also