//---------------------------------------------------------------------------------------------------------------------

        public override bool Shutdown(MachineStopMethod method)
        {
            return(SendPutOperation("SHUTDOWN"));
        }
Example #2
0
        //---------------------------------------------------------------------------------------------------------------------

        public override bool Shutdown(MachineStopMethod method)
        {
            return(this.XmlRpcProvider.XmlRpc.VMAction(Int32.Parse(this.RemoteId), "shutdown"));
        }
        //---------------------------------------------------------------------------------------------------------------------

        public override bool Stop(MachineStopMethod method)
        {
            return(SendPutOperation("STOPPED"));
        }
        //---------------------------------------------------------------------------------------------------------------------

        public override bool Shutdown(MachineStopMethod method)
        {
            return(false);
        }
        //---------------------------------------------------------------------------------------------------------------------

        /// Shutdown the cloud appliance
        public abstract bool Shutdown(MachineStopMethod method);
        //---------------------------------------------------------------------------------------------------------------------

        /// Stop the cloud appliance
        /// \xrefitem rmodp "RM-ODP" "RM-ODP Documentation"
        public abstract bool Stop(MachineStopMethod method);
 public override bool Shutdown(MachineStopMethod method)
 {
     throw new NotImplementedException();
 }