ConoHaNet.OpenStackMember.WaitForVolumeState C# (CSharp) Method

WaitForVolumeState() public method

public WaitForVolumeState ( string volumeId, VolumeState expectedState, VolumeState errorStates, int refreshCount = 600, TimeSpan refreshDelay = null ) : Volume
volumeId string
expectedState VolumeState
errorStates VolumeState
refreshCount int
refreshDelay TimeSpan
return Volume
        public Volume WaitForVolumeState(string volumeId, VolumeState expectedState, VolumeState[] errorStates, int refreshCount = 600, TimeSpan? refreshDelay = null)
        {
            return BlockStorageProvider.WaitForVolumeState(volumeId, expectedState, errorStates, refreshCount, refreshDelay, this.DefaultRegion, this.Identity);
        }
OpenStackMember