ILoggingManagerGetLogsForPubTarget Method
|
Gets a paginated list of
publish logs for a given publishing target.
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.308
Syntax IEnumerable<IPublishLog> GetLogsForPubTarget(
string pubTargetID,
out int count,
int pageSize = -1,
int startIndex = -1
)
Function GetLogsForPubTarget (
pubTargetID As String,
<OutAttribute> ByRef count As Integer,
Optional pageSize As Integer = -1,
Optional startIndex As Integer = -1
) As IEnumerable(Of IPublishLog)
IEnumerable<IPublishLog^>^ GetLogsForPubTarget(
String^ pubTargetID,
[OutAttribute] int% count,
int pageSize = -1,
int startIndex = -1
)
abstract GetLogsForPubTarget :
pubTargetID : string *
count : int byref *
?pageSize : int *
?startIndex : int
(* Defaults:
let _pageSize = defaultArg pageSize -1
let _startIndex = defaultArg startIndex -1
*)
-> IEnumerable<IPublishLog>
Parameters
- pubTargetID
- Type: SystemString
The ID of the target to get logs for. - count
- Type: SystemInt32
The number of logs retrieved. - pageSize (Optional)
- Type: SystemInt32
The number of logs per page for paginated results. - startIndex (Optional)
- Type: SystemInt32
The starting index for log retrieval.
Return Value
Type:
IEnumerableIPublishLogA list of
publish logs.
See Also