Ejemplo n.º 1
0
 /// <summary>Adds all values from the passed in ContentValues.</summary>
 /// <remarks>Adds all values from the passed in ContentValues.</remarks>
 /// <param name="other">the ContentValues from which to copy</param>
 public void PutAll(Couchbase.Lite.Storage.ContentValues other)
 {
     mValues.PutAll(other.mValues);
 }
Ejemplo n.º 2
0
 /// <summary>Creates a set of values copied from the given set</summary>
 /// <param name="from">the values to copy</param>
 public ContentValues(Couchbase.Lite.Storage.ContentValues from)
 {
     mValues = new Dictionary <string, object>(from.mValues);
 }