Click or drag to resize

IPublishLog Interface


Represents a log of all of the data relevant to a publish. Publish logs consist of multiple entries.

Namespace: Ingeniux.CMS
Assembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
Syntax
public interface IPublishLog : IEntity<ILoggingManager>, 
	IEntity, IEntityEvents

The IPublishLog type exposes the following members.

Properties
 NameDescription
Public propertyArchived Gets/sets the archived value of this entity
(Inherited from IEntity)
Public propertyAvgAssetPublishMillis Gets/sets the average time it took each asset to publish in milliseconds.
Public propertyAvgAssetPublishSeconds Gets/sets the average time it took each asset to publish in seconds.
Public propertyAvgPagePublishMillis Gets/sets the average time it took each page to publish in milliseconds.
Public propertyAvgPagePublishSeconds Gets/sets the average time it took each page to publish in seconds.
Public propertyCreated Gets the entity's creation date.
(Inherited from IEntity)
Public propertyCreationUser Gets the ID of the User who created this entity.
(Inherited from IEntity)
Public propertyErrorFileEntries Gets/sets a collection of entries for files that errored during the publish.
Public propertyErrorPageEntries Gets/sets a collection of entries for pages that errored during the publish.
Public propertyFailedItemsCount The total number of failed files.
Public propertyForcedIncremental Gets/sets if this was a forced incremental publish.
Public propertyIncremental Gets/sets if this was an incremental publish.
Public propertyLastModified Gets the date when the entity was most recently modified.
(Inherited from IEntity)
Public propertyLastModifiedUser Gets the ID of the User who lasted edited the entity.
(Inherited from IEntity)
Public propertyManager Gets the manager that retrieved this entity instance.
(Inherited from IEntityTManager)
Public propertyNumberOfThreads Gets/sets the number of processes that were active on the machine during the publish.
Public propertyPostProcessingEntries A wrapper for information about post-published content.
Public propertyPublishedContentEntriesObsolete.

This property is left solely for migration purpose Do not use this property to populate pub log entries.

A collection of published content IDs.

Public propertyPublishedPageEntriesObsolete.

This property deprecated, here solely to account for old logs. Do not use this property to populate pub log entries.

A collection of published page IDs.

Public propertyPublishingLogEntries A collection of content entries. Includes a list of entries for content that successfully published as well as a list of entries for content that failed to publish.
Public propertyPublishingTaskId The ID of the publishing task this log is for.
Public propertyPubTargetID Gets/sets the ID of the corresponding .
Public propertyPubTargetName Gets/sets the name of the corresponding .
Public propertyReplicationsToPerform Gets/sets the number of replications to perform after the publish.
Public propertySession Gets the session that retrieved this entity. An entity is always session-specific.
(Inherited from IEntity)
Public propertySessionId Gets the unique ID of the session that retrieved this entity.
(Inherited from IEntity)
Public propertyStartTime Gets/sets the start time of the publishing task.
Public propertyStoppingError Gets/sets if there was an error causing the publish to terminate.
Public propertyStoppingErrorEntry Gets/sets the entry explaining the error that terminated the publish.
Public propertySubmitTime Gets/sets the submit time of the publishing task.
Public propertySubmitUser Gets/sets the ID of the CMS user who created the publishing task.
Public propertySubmitUserName Gets/sets the name of the CMS user who created the publishing task.
Public propertyTotalAdditionalFilesGenerated Gets/sets the total count of new content added after the publish.
Public propertyTotalAssetLoadSeconds Gets/sets the amount of time it took to load all the assets for the publish into a dictionary in seconds.
Public propertyTotalAssetSerializeSeconds Gets/sets the amount of time it took to serialize all the assets for the publish in seconds.
Public propertyTotalAssetsPublished Gets/sets the total number of assets that were published.
Public propertyTotalItemsPostProcessed Gets/sets the total count of published content manipulated after the publish.
Public propertyTotalPageLoadSeconds Gets/sets the amount of time it took to load all the pages for the publish into a dictionary in seconds.
Public propertyTotalPageSerializeSeconds Gets/sets the amount of time it took to serialize all the pages for the publish in seconds.
Public propertyTotalPagesPublished The total number of pages that were published.
Public propertyTotalTimeMillis Gets/sets the total time the publish took in milliseconds.
Public propertyTotalTimeSeconds Gets/sets the total time the publish took in seconds.
Top
Methods
 NameDescription
Public methodTouch Updated the entity's LastModified value to the current time.
(Inherited from IEntity)
Public methodValidateData Validates this entity's data. Implemented by concrete inheriting types.
(Inherited from IEntity)
Public methodValidateUserPermission Validates the user permission on the current entity. Implemented by concrete inheriting types. It is called automatically upon saving an entity.
(Inherited from IEntity)
Top
Events
 NameDescription
Public eventAfterEntitySave This event is fired after a Entity object is saved.
(Inherited from IEntityEvents)
Public eventBeforeEntitySave This event is fired before any Entity object is about to be saved.
(Inherited from IEntityEvents)
Top
Remarks
Corresponds to a completed publishing task.
See Also