Search Results for

    Show / Hide Table of Contents
    View Source

    Interface IInstallStep

    Defines a step that's required to install Umbraco.

    Namespace: Umbraco.Cms.Core.Installer
    Assembly: Umbraco.Core.dll
    Syntax
    public interface IInstallStep

    Methods

    View Source

    ExecuteAsync(InstallData)

    Executes the install step.

    Declaration
    Task<Attempt<InstallationResult>> ExecuteAsync(InstallData model)
    Parameters
    Type Name Description
    InstallData model

    InstallData model containing the data provided by the installer UI.

    Returns
    Type Description
    Task<Attempt<InstallationResult>>
    View Source

    RequiresExecutionAsync(InstallData)

    Determines if the step is required to execute.

    Declaration
    Task<bool> RequiresExecutionAsync(InstallData model)
    Parameters
    Type Name Description
    InstallData model

    InstallData model containing the data provided by the installer UI.

    Returns
    Type Description
    Task<System.Boolean>

    True if the step should execute, otherwise false.

    • Improve this Doc
    • View Source
    In This Article
    • Methods
      • ExecuteAsync(InstallData)
      • RequiresExecutionAsync(InstallData)
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX