Class PushDataStoreResponse<T>
Class used to capture information about push data store operations.
Inherited Members
Namespace: Kinvey
Assembly: Kinvey.dll
Syntax
public class PushDataStoreResponse<T> : DataStoreResponse<T>
Type Parameters
Name | Description |
---|---|
T | The type of an entity. |
Properties
| Improve this Doc View SourcePushCount
Gets the count of datastore objects returned.
Declaration
public int PushCount { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The count. |
PushEntities
Gets the pushed entities.
Declaration
public List<T> PushEntities { get; }
Property Value
Type | Description |
---|---|
List<T> | The push entities. |
Methods
| Improve this Doc View SourceSetResponse(PushDataStoreResponse<T>)
Sets the response.
Declaration
public void SetResponse(PushDataStoreResponse<T> response)
Parameters
Type | Name | Description |
---|---|---|
PushDataStoreResponse<T> | response | The instance of PushDataStoreResponse<T> class. |