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

SaveAzureVhdStop() public method

public SaveAzureVhdStop ( Uri source, FileInfo localFilePath, int numThreads, string storageKey, bool overwrite, int ms ) : string
source Uri
localFilePath FileInfo
numThreads int
storageKey string
overwrite bool
ms int
return string
        public string SaveAzureVhdStop(Uri source, FileInfo localFilePath, int? numThreads, string storageKey, bool overwrite, int ms)
        {
            SaveAzureVhdCmdletInfo saveAzureVhdCmdletInfo = new SaveAzureVhdCmdletInfo(source, localFilePath, numThreads, storageKey, overwrite);
            WindowsAzurePowershellCmdlet azurePowershellCmdlet = new WindowsAzurePowershellCmdlet(saveAzureVhdCmdletInfo);
            return azurePowershellCmdlet.RunAndStop(ms).ToString();
        }
ServiceManagementCmdletTestHelper