ILoggingManagerGetLogs Method (String, Int32, DateTime, DateTime)
|
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.308
Syntax IEnumerable<IPublishLog> GetLogs(
string pubTargetId,
out int count,
DateTime startTime,
DateTime endTime
)
Function GetLogs (
pubTargetId As String,
<OutAttribute> ByRef count As Integer,
startTime As DateTime,
endTime As DateTime
) As IEnumerable(Of IPublishLog)
IEnumerable<IPublishLog^>^ GetLogs(
String^ pubTargetId,
[OutAttribute] int% count,
DateTime startTime,
DateTime endTime
)
abstract GetLogs :
pubTargetId : string *
count : int byref *
startTime : DateTime *
endTime : DateTime -> IEnumerable<IPublishLog>
Parameters
- pubTargetId
- Type: SystemString
ID of the publishing target to get logs for. - count
- Type: SystemInt32
Number of publish logs retrieved. - startTime
- Type: SystemDateTime
The start of the time range within which relevant logs were submitted - endTime
- Type: SystemDateTime
The end of the time range within which relevant logs were submitted.
Return Value
Type:
IEnumerableIPublishLogA 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