15 lines
573 B
C#
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";
|
|
}
|
|
}
|