Click or drag to resize

ILoggingManagerGetLogs(String, Int32, DateTime, DateTime) Method


Gets a paginated list of publish logs for a given target in a specified time range.

Namespace: Ingeniux.CMS
Assembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
Syntax
IEnumerable<IPublishLog> GetLogs(
	string pubTargetId,
	out int count,
	DateTime startTime,
	DateTime endTime
)

Parameters

pubTargetId  String
ID of the publishing target to get logs for.
count  Int32
Number of publish logs retrieved.
startTime  DateTime
The start of the time range within which relevant logs were submitted
endTime  DateTime
The end of the time range within which relevant logs were submitted.

Return Value

IEnumerableIPublishLog
A list of publish logs.
Remarks
If the publishing target ID is passed in as null or an empty string all publishing target logs are retrieved.
See Also