Microsoft.WindowsAzure.Management.ServiceManagement.Test.FunctionalTests.ServiceManagementCmdletTestHelper.StartAzureVM C# (CSharp) Method

StartAzureVM() public method

public StartAzureVM ( string vmName, string serviceName ) : void
vmName string
serviceName string
return void
        public void StartAzureVM(string vmName, string serviceName)
        {
            StartAzureVMCmdletInfo startAzureVMCmdlet = new StartAzureVMCmdletInfo(vmName, serviceName);
            WindowsAzurePowershellCmdlet azurePowershellCmdlet = new WindowsAzurePowershellCmdlet(startAzureVMCmdlet);
            azurePowershellCmdlet.Run();
        }
ServiceManagementCmdletTestHelper