Microsoft.WindowsAzure.Management.ServiceManagement.Test.FunctionalTests.ServiceManagementCmdletTestHelper.SaveAzureVhdStop C# (CSharp) Méthode

SaveAzureVhdStop() public méthode

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
Résultat 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