ConoHaNet.OpenStackMember.WaitForVolumeDeleted C# (CSharp) 메소드

WaitForVolumeDeleted() 공개 메소드

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