Class MacroSignatureUpdateService
- Namespace
- CMS.MacroEngine
- Assembly
- CMS.MacroEngine.dll
Service for updating macro signatures within the system.
public class MacroSignatureUpdateService : IMacroSignatureUpdateService
- Inheritance
-
objectMacroSignatureUpdateService
- Implements
- Extension Methods
Constructors
MacroSignatureUpdateService(ILocalizationService, IEventLogService)
Initializes a new instance of MacroSignatureUpdateService.
public MacroSignatureUpdateService(ILocalizationService localizationService, IEventLogService eventLogService)
Parameters
localizationService
ILocalizationServiceeventLogService
IEventLogService
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.
public void UpdateMacroSignatures(string oldSalt, string newSalt, bool refreshAll, IUserInfo user, Action<string> logProcess, Action<string> logError)
Parameters
oldSalt
stringOld salt.
newSalt
stringNew salt. If not specified, the application's current salt is used for resigning.
refreshAll
boolIf enabled the process skips signature integrity check and re-signs all macros.
user
IUserInfoUser 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, orrefreshAll
istrue
).