ConoHaNet.OpenStackMember.DetachVolume C# (CSharp) Method

DetachVolume() public method

public DetachVolume ( string serverId, string volumeId ) : bool
serverId string
volumeId string
return bool
        public bool DetachVolume(string serverId, string volumeId)
        {
            Server s = this.GetServer(serverId);
            return s.DetachVolume(volumeId);
        }
OpenStackMember