View Source
  Class InstallSetupStep
  
  
  
  
    Inheritance
      System.Object
      
   
  
  Assembly: Umbraco.Core.dll
  Syntax
  
    [DataContract(Name = "step", Namespace = "")]
public abstract class InstallSetupStep
   
  Constructors
  
  
    View Source
  
  InstallSetupStep()
  
  
  Declaration
  
    protected InstallSetupStep()
   
  Properties
  
  
    View Source
  
  Description
  
  
  Declaration
  
    [DataMember(Name = "description")]
public string Description { get; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.String |  | 
    
  
  
    View Source
  
  InstallTypeTarget
  
  
  Declaration
  
    [IgnoreDataMember]
public InstallationType InstallTypeTarget { get; }
   
  Property Value
  
  
    View Source
  
  Name
  
  
  Declaration
  
    [DataMember(Name = "name")]
public string Name { get; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.String |  | 
    
  
  
    View Source
  
  
  
  
  Declaration
  
    [IgnoreDataMember]
public bool PerformsAppRestart { get; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.Boolean |  | 
    
  
  
    View Source
  
  ServerOrder
  Defines what order this step needs to execute on the server side since the
steps might be shown out of order on the front-end
Declaration
  
    [DataMember(Name = "serverOrder")]
public int ServerOrder { get; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.Int32 |  | 
    
  
  
    View Source
  
  StepType
  Defines the step model type on the server side so we can bind it
Declaration
  
    [IgnoreDataMember]
public abstract Type StepType { get; }
   
  Property Value
  
  
    View Source
  
  View
  
  
  Declaration
  
    [DataMember(Name = "view")]
public virtual string View { get; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.String |  | 
    
  
  
    View Source
  
  ViewModel
  The view model used to render the view, by default is null but can be populated
Declaration
  
    [DataMember(Name = "model")]
public virtual object ViewModel { get; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.Object |  |