Class ArchivedItem
Contains information about an archived item.
Inheritance
System.Object
ArchivedItem
Namespace: EPiServer.Commerce.Catalog.ContentTypes
Assembly: Mediachase.Commerce.dll
Version: 14.26.0Syntax
public class ArchivedItem : Object
Constructors
ArchivedItem()
Declaration
public ArchivedItem()
ArchivedItem(Int32, Nullable<Int32>, Nullable<Int32>, String, DateTime, String)
Declaration
public ArchivedItem(int archivedId, Nullable<int> nodeId, Nullable<int> entryId, string name, DateTime archivedDate, string archivedBy)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | archivedId | |
System.Nullable<System.Int32> | nodeId | |
System.Nullable<System.Int32> | entryId | |
System.String | name | |
System.DateTime | archivedDate | |
System.String | archivedBy |
Properties
ArchivedBy
Gets or sets the name of the person archiving the item.
Declaration
public string ArchivedBy { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ArchivedDate
Gets or sets the date for when the item was archived.
Declaration
public DateTime ArchivedDate { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
CatalogArchivedId
Gets or sets the id for the archived item.
Declaration
public int CatalogArchivedId { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
CatalogEntryId
Gets or sets the entry id for the archived item if it is an entry.
Declaration
public Nullable<int> CatalogEntryId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
CatalogNodeId
Gets or sets the node id for the archived item if it is a node.
Declaration
public Nullable<int> CatalogNodeId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
Name
Gets or sets the name of the archived item.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
OriginalCatalogId
Gets or sets the original id for the catalog.
Declaration
public int OriginalCatalogId { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
OriginalParentId
Gets or sets the original id for the parent.
Declaration
public int OriginalParentId { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |