Class CatalogImportExportMessage
Inheritance
System.Object
CatalogImportExportMessage
Namespace: EPiServer.Commerce.Catalog.ImportExport.Models
Assembly: EPiServer.Business.Commerce.dll
Version: 14.26.0Syntax
public class CatalogImportExportMessage : Object
Constructors
CatalogImportExportMessage()
Declaration
public CatalogImportExportMessage()
CatalogImportExportMessage(DateTime, String, Int32)
Declaration
public CatalogImportExportMessage(DateTime timestampUtc, string message, int stageProgress)
Parameters
Type | Name | Description |
---|---|---|
System.DateTime | timestampUtc | |
System.String | message | |
System.Int32 | stageProgress |
CatalogImportExportMessage(DateTime, String, String, Int32, Int32, Int32)
Declaration
public CatalogImportExportMessage(DateTime timestampUtc, string message, string stageName, int stageIndex, int stageCount, int stageProgress)
Parameters
Type | Name | Description |
---|---|---|
System.DateTime | timestampUtc | |
System.String | message | |
System.String | stageName | |
System.Int32 | stageIndex | |
System.Int32 | stageCount | |
System.Int32 | stageProgress |
Properties
Message
Gets or sets the content of the message.
Declaration
public string Message { get; set; }
Property Value
Type | Description |
---|---|
System.String | The message. |
StageCount
Gets or sets the number of stages in the task.
Declaration
public int StageCount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The number of stages. |
StageIndex
Gets or sets the index (zero based) of the current stage.
Declaration
public int StageIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The stage index. |
StageName
Gets or sets the name of the current stage of processing.
Declaration
public string StageName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the stage. |
StageProgress
Gets or sets the current progress within the current stage of execution.
Declaration
public int StageProgress { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The stage progress. |
TimestampUtc
Gets or sets the timestamp of the message, in UTC.
Declaration
public DateTime TimestampUtc { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime | The timestamp UTC. |