Example #1
0
        public bool DeleteObject(string ContainerName, string ObjectName)
        {
            ConoHa.DeleteObject(ContainerName, ObjectName);

            // update container info.
            ConoHa.CreateContainer(ContainerName);

            return(true);
        }
Example #2
0
 public bool CreateContainer(string ContainerName)
 {
     return((ConoHa.CreateContainer(ContainerName) == ObjectStore.ContainerCreated) ? true : false);
 }