Class SyncDataStoreResponse<T>
Class used to capture information about sync data store operation.
Inheritance
System.Object
SyncDataStoreResponse<T>
Namespace: Kinvey
Assembly: Kinvey.dll
Syntax
public class SyncDataStoreResponse<T> : object
Type Parameters
Name | Description |
---|---|
T | The type of the response. |
Properties
| Improve this Doc View SourcePullResponse
The data store response for the pull part of the sync operation.
Declaration
public PullDataStoreResponse<T> PullResponse { get; set; }
Property Value
Type | Description |
---|---|
PullDataStoreResponse<T> | The PullResponse property gets/sets the value of the PullDataStoreResponse<T> field, _pullResponse. |
PushResponse
The data store response for the push part of the sync operation.
Declaration
public PushDataStoreResponse<T> PushResponse { get; set; }
Property Value
Type | Description |
---|---|
PushDataStoreResponse<T> | The PushResponse property gets/sets the value of the PushDataStoreResponse<T> field, _pushResponse. |