Exemple #1
0
        public void StopAzureVM(string vmName, string serviceName)
        {
            StopAzureVMCmdletInfo        stopAzureVMCmdlet     = new StopAzureVMCmdletInfo(vmName, serviceName);
            WindowsAzurePowershellCmdlet azurePowershellCmdlet = new WindowsAzurePowershellCmdlet(stopAzureVMCmdlet);

            azurePowershellCmdlet.Run();
        }
 public void StopAzureVM(string vmName, string serviceName)
 {
     StopAzureVMCmdletInfo stopAzureVMCmdlet = new StopAzureVMCmdletInfo(vmName, serviceName);
     WindowsAzurePowershellCmdlet azurePowershellCmdlet = new WindowsAzurePowershellCmdlet(stopAzureVMCmdlet);
     azurePowershellCmdlet.Run();
 }