Files
Pilz.Updating/Pilz.Updating.UpdateInstaller.AddOns/UpdateInstallerFunctionTypes.cs
2023-11-21 08:55:48 +01:00

15 lines
573 B
C#

namespace Pilz.Updating.UpdateInstaller.AddOns
{
public static class UpdateInstallerFunctionTypes
{
/// <summary>
/// The function will be executed when a instance of UpdateInstaller has been created.
/// <para/><b>Parameter:</b><br/>
/// <see cref="T:Pilz.Updating.UpdateInstaller.Lib.UpdateInstaller"/>
/// <para/><b>Result type:</b><br/>
/// <see cref="void"/>
/// </summary>
public const string OnInstancingUpdateInstaller = "pilz.updating.updateinstaller.oninstancingupdateinstaller";
}
}