Table of Contents

Interface IMacroSignatureUpdateService

Namespace
CMS.MacroEngine
Assembly
CMS.MacroEngine.dll

Defines service for updating macro signatures within the system.

public interface IMacroSignatureUpdateService
Extension Methods

Methods

UpdateMacroSignatures(string, string, bool, IUserInfo, Action<string>, Action<string>)

Updates the security signatures of existing macro expressions. Signs all macros as the provided user if the oldSalt is not specified.

void UpdateMacroSignatures(string oldSalt, string newSalt, bool refreshAll, IUserInfo user, Action<string> logProcess, Action<string> logError)

Parameters

oldSalt string

Old salt.

newSalt string

New salt. If not specified, the application's current salt is used for resigning.

refreshAll bool

If enabled the process skips signature integrity check and re-signs all macros.

user IUserInfo

User for macro signing. The new macro signatures will contain the name or identity of this user.

logProcess Action<string>

Action that provides logging of progress status messages.

logError Action<string>

Action that provides logging of progress error messages.

Exceptions

ArgumentException

If user is not specified when signing all macros (oldSalt is null or empty, or refreshAll is true).