ILoggingManagerGetRepLogSummariesForPubTask Method
|
Gets a paginated list of replication summaries withing a given time frame.
Namespace: Ingeniux.CMSAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
SyntaxIEnumerable<IReplicationLogTransform> GetRepLogSummariesForPubTask(
string pubTaskId,
out int count,
int pageSize = -1,
int startIndex = -1
)
Function GetRepLogSummariesForPubTask (
pubTaskId As String,
<OutAttribute> ByRef count As Integer,
Optional pageSize As Integer = -1,
Optional startIndex As Integer = -1
) As IEnumerable(Of IReplicationLogTransform)
IEnumerable<IReplicationLogTransform^>^ GetRepLogSummariesForPubTask(
String^ pubTaskId,
[OutAttribute] int% count,
int pageSize = -1,
int startIndex = -1
)
abstract GetRepLogSummariesForPubTask :
pubTaskId : string *
count : int byref *
?pageSize : int *
?startIndex : int
(* Defaults:
let _pageSize = defaultArg pageSize -1
let _startIndex = defaultArg startIndex -1
*)
-> IEnumerable<IReplicationLogTransform> Parameters
- pubTaskId String
- ID of the associated publishing task to get replication summaries for.
- count Int32
- Number of summaries retrieved.
- pageSize Int32 (Optional)
- The number of logs per page for paginated results.
- startIndex Int32 (Optional)
- The starting index for log retrieval.
Return Value
IEnumerableIReplicationLogTransformA list of
Replication Log Transform summaries.
See Also