C# Class Amazon.CognitoSync.SyncManager.Record

A Record is the element stored in a Dataset. There can be up to 1k records or up to 1 MB in size in a Dataset.
Show file Open project: aws/aws-sdk-net Class Usage Examples

Public Methods

Method Description
Record ( string key, string value, long syncCount, System.DateTime lastModifiedDate, string lastModifiedBy, System.DateTime deviceLastModifiedDate, bool modified ) : System

Creates an instance of the Record.

ToString ( ) : string

A string representation of the record

Method Details

Record() public method

Creates an instance of the Record.
public Record ( string key, string value, long syncCount, System.DateTime lastModifiedDate, string lastModifiedBy, System.DateTime deviceLastModifiedDate, bool modified ) : System
key string The key representing the record
value string The value for the record
syncCount long THe number of times this record has been synchronized
lastModifiedDate System.DateTime The last time the record was modified in UTC
lastModifiedBy string
deviceLastModifiedDate System.DateTime
modified bool Flag indicating the record was modified
return System

ToString() public method

A string representation of the record
public ToString ( ) : string
return string