| ISynchronizationQueueGetAll Method |
Get all queue items from the queue
Namespace:
SanteDB.DisconnectedClient.Synchronization
Assembly:
SanteDB.DisconnectedClient.Core (in SanteDB.DisconnectedClient.Core.dll) Version: 2.2.1
Syntax IEnumerable<ISynchronizationQueueEntry> GetAll(
int offset,
int count,
out int totalResults
)
Function GetAll (
offset As Integer,
count As Integer,
<OutAttribute> ByRef totalResults As Integer
) As IEnumerable(Of ISynchronizationQueueEntry)
IEnumerable<ISynchronizationQueueEntry^>^ GetAll(
int offset,
int count,
[OutAttribute] int% totalResults
)
abstract GetAll :
offset : int *
count : int *
totalResults : int byref -> IEnumerable<ISynchronizationQueueEntry>
Parameters
- offset
- Type: SystemInt32
The starting offset of objects - count
- Type: SystemInt32
The number of objects to retrieve - totalResults
- Type: SystemInt32
[Missing <param name="totalResults"/> documentation for "M:SanteDB.DisconnectedClient.Synchronization.ISynchronizationQueue.GetAll(System.Int32,System.Int32,System.Int32@)"]
Return Value
Type:
IEnumerableISynchronizationQueueEntryThe raw queue items
See Also