コード例 #1
0
 /// <summary>
 /// Deletes the snapshot with the given URI.
 /// </summary>
 /// <returns></returns>
 public JsonResult Delete(string uri)
 {
     SnapshotManager.DeleteBlob(uri, RoleSettings.StorageCredentials);
     return(Json(new { success = true }));
 }