SecureConfigurationManagerTConfigSaveRedactedText(IConfigurationRequestContext, String) Method

Saves a configuration text, ensuring that: 1. It is valid json (parseable). 2. No settings were modified that should be restricted for the current user. 3. Any passwords that were redacted when provided to the user, are restored first. If previous version cannot be parsed, no passwords would have been redacted, so this check isn't done, However, we would not have provided the unparseable text to vaultAdmins, so we don't allow them to save in this situation either.

Definition

Namespace: MFiles.VAF.Configuration
Assembly: MFiles.VAF.Configuration (in MFiles.VAF.Configuration.dll) Version: 23.12.13247.3
C#
public virtual TConfig SaveRedactedText(
	IConfigurationRequestContext context,
	string configuration
)

Parameters

context  IConfigurationRequestContext
The vault and user requesting the save.
configuration  String
The configuration text to save.

Return Value

TConfig
The saved configuration.

See Also