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

DetachVolume() 공개 메소드

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