ILoggingManagerGetLogs(String, Int32, DateTime, DateTime) Method
|
Namespace: Ingeniux.CMSAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
SyntaxIEnumerable<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 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
IEnumerableIPublishLogA list of
publish logs.
RemarksIf the publishing target ID is passed in as null or an empty string all publishing target logs are retrieved.
See Also