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

AddAzureVMImage() public method

public AddAzureVMImage ( string imageName, string mediaLocation, OSType os, string label = null ) : OSImageContext
imageName string
mediaLocation string
os OSType
label string
return Microsoft.WindowsAzure.Management.ServiceManagement.Model.OSImageContext
        public OSImageContext AddAzureVMImage(string imageName, string mediaLocation, OSType os, string label = null)
        {
            AddAzureVMImageCmdletInfo addAzureVMImageCmdlet = new AddAzureVMImageCmdletInfo(imageName, mediaLocation, os, label);
            return OSImageContextRun(new WindowsAzurePowershellCmdlet(addAzureVMImageCmdlet));
        }
ServiceManagementCmdletTestHelper