IReplicatorReplicationTaskMonitors Method
|
Retrieves the collection of monitor objects for the
Replication Targets that belongs to this replicator,
in a paginated fashion.
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.3.169
Syntax IEnumerable<IReplicationTaskMonitor> ReplicationTaskMonitors(
out int count,
IUserSession sessionOverride = null,
int pageSize = -1,
int startIndex = -1
)
Function ReplicationTaskMonitors (
<OutAttribute> ByRef count As Integer,
Optional sessionOverride As IUserSession = Nothing,
Optional pageSize As Integer = -1,
Optional startIndex As Integer = -1
) As IEnumerable(Of IReplicationTaskMonitor)
IEnumerable<IReplicationTaskMonitor^>^ ReplicationTaskMonitors(
[OutAttribute] int% count,
IUserSession^ sessionOverride = nullptr,
int pageSize = -1,
int startIndex = -1
)
abstract ReplicationTaskMonitors :
count : int byref *
?sessionOverride : IUserSession *
?pageSize : int *
?startIndex : int
(* Defaults:
let _sessionOverride = defaultArg sessionOverride null
let _pageSize = defaultArg pageSize -1
let _startIndex = defaultArg startIndex -1
*)
-> IEnumerable<IReplicationTaskMonitor>
Parameters
- count
- Type: SystemInt32
Count of monitors - sessionOverride (Optional)
- Type: Ingeniux.CMSIUserSession
Override session to replace the currently openned session - pageSize (Optional)
- Type: SystemInt32
Number of entries to return. If not provided, returns all entries. - startIndex (Optional)
- Type: SystemInt32
Starting index of entries. If not provided, starts from the first entry.
Return Value
Type:
IEnumerableIReplicationTaskMonitorCollection of monitor objects for the
Replication Targets that belongs to this replicator.
See Also