View Source
Class InstallSetupStepAttribute
Inheritance
System.Object
Assembly: Umbraco.Core.dll
Syntax
public sealed class InstallSetupStepAttribute : Attribute
Constructors
View Source
InstallSetupStepAttribute(InstallationType, String, Int32, String)
Declaration
public InstallSetupStepAttribute(InstallationType installTypeTarget, string name, int serverOrder, string description)
Parameters
Type |
Name |
Description |
InstallationType |
installTypeTarget |
|
System.String |
name |
|
System.Int32 |
serverOrder |
|
System.String |
description |
|
View Source
InstallSetupStepAttribute(InstallationType, String, String, Int32, String)
Declaration
public InstallSetupStepAttribute(InstallationType installTypeTarget, string name, string view, int serverOrder, string description)
Parameters
Type |
Name |
Description |
InstallationType |
installTypeTarget |
|
System.String |
name |
|
System.String |
view |
|
System.Int32 |
serverOrder |
|
System.String |
description |
|
Properties
View Source
Description
Declaration
public string Description { get; }
Property Value
Type |
Description |
System.String |
|
View Source
InstallTypeTarget
Declaration
public InstallationType InstallTypeTarget { get; }
Property Value
View Source
Name
Declaration
public string Name { get; }
Property Value
Type |
Description |
System.String |
|
View Source
A flag to notify the installer that this step performs an app pool restart, this can be handy to know since if the
current
step is performing a restart, we cannot 'look ahead' to see if the next step can execute since we won't know until
the app pool
is restarted.
Declaration
public bool PerformsAppRestart { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
View Source
ServerOrder
Declaration
public int ServerOrder { get; }
Property Value
Type |
Description |
System.Int32 |
|
View Source
View
Declaration
public string View { get; }
Property Value
Type |
Description |
System.String |
|