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