ConoHaNet.OpenStackMember.AttachVolume C# (CSharp) Méthode

AttachVolume() public méthode

public AttachVolume ( string serverId, string volumeId, string devicePath = null ) : ServerVolume
serverId string
volumeId string
devicePath string
Résultat ServerVolume
        public ServerVolume AttachVolume(string serverId, string volumeId, string devicePath = null)
        {
            Server s = this.GetServer(serverId);
            return s.AttachVolume(volumeId, devicePath);
        }
OpenStackMember