View Source
  Class InstallProgressResultModel
  
  Returned to the UI for each installation step that is completed
    Inheritance
      System.Object
      
   
  
  Assembly: Umbraco.Core.dll
  Syntax
  
    [DataContract(Name = "result", Namespace = "")]
public class InstallProgressResultModel
   
  Constructors
  
  
    View Source
  
  InstallProgressResultModel(Boolean, String, String, String, Object)
  
  
  Declaration
  
    public InstallProgressResultModel(bool processComplete, string stepCompleted, string nextStep, string view = null, object viewModel = null)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | System.Boolean | processComplete |  | 
      
        | System.String | stepCompleted |  | 
      
        | System.String | nextStep |  | 
      
        | System.String | view |  | 
      
        | System.Object | viewModel |  | 
    
  
  Properties
  
  
    View Source
  
  NextStep
  
  
  Declaration
  
    [DataMember(Name = "nextStep")]
public string NextStep { get; set; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.String |  | 
    
  
  
    View Source
  
  ProcessComplete
  
  
  Declaration
  
    [DataMember(Name = "complete")]
public bool ProcessComplete { get; set; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.Boolean |  | 
    
  
  
    View Source
  
  StepCompleted
  
  
  Declaration
  
    [DataMember(Name = "stepCompleted")]
public string StepCompleted { get; set; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.String |  | 
    
  
  
    View Source
  
  View
  The UI view to show when this step executes, by default no views are shown for the completion of a step unless
explicitly specified.
Declaration
  
    [DataMember(Name = "view")]
public string View { get; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.String |  | 
    
  
  
    View Source
  
  ViewModel
  The view model to return to the UI if this step is returning a view (optional)
Declaration
  
    [DataMember(Name = "model")]
public object ViewModel { get; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.Object |  |