ConoHaNet.OpenStackMember.WaitForVolumeDeleted C# (CSharp) Method

WaitForVolumeDeleted() public method

public WaitForVolumeDeleted ( string volumeId, int refreshCount = 360, TimeSpan refreshDelay = null ) : bool
volumeId string
refreshCount int
refreshDelay TimeSpan
return bool
        public bool WaitForVolumeDeleted(string volumeId, int refreshCount = 360, TimeSpan? refreshDelay = null)
        {
            return BlockStorageProvider.WaitForVolumeDeleted(volumeId, refreshCount, refreshDelay, this.DefaultRegion, this.Identity);
        }
OpenStackMember