Ejemplo n.º 1
0
 public void Delete(Collection collection)
 {
     server.Delete(collection.Url + ".xml");
 }
Ejemplo n.º 2
0
 public void Update(Collection collection)
 {
     server.Put(collection.Url + ".xml", collection.ToXml());
 }
Ejemplo n.º 3
0
 public void Create(Collection collection)
 {
     server.Post("/collections.xml", collection.ToXml());
 }