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