Microsoft.WindowsAzure.Management.ServiceManagement.Test.FunctionalTests.IaasCmdletInfo.SetAzureDeploymentCmdletInfo.SetAzureDeploymentUpgradeCmdletInfo C# (CSharp) Method

SetAzureDeploymentUpgradeCmdletInfo() public static method

public static SetAzureDeploymentUpgradeCmdletInfo ( string serviceName, string slot, string mode, string packagePath, string configPath ) : SetAzureDeploymentCmdletInfo
serviceName string
slot string
mode string
packagePath string
configPath string
return SetAzureDeploymentCmdletInfo
        public static SetAzureDeploymentCmdletInfo SetAzureDeploymentUpgradeCmdletInfo(string serviceName, string slot, string mode, string packagePath, string configPath)
        {
            SetAzureDeploymentCmdletInfo result = new SetAzureDeploymentCmdletInfo(serviceName, slot);

            result.cmdletParams.Add(new CmdletParam("Upgrade"));

            result.cmdletParams.Add(new CmdletParam("Mode", mode));
            result.cmdletParams.Add(new CmdletParam("Package", packagePath));
            result.cmdletParams.Add(new CmdletParam("Configuration", configPath));

            return result;
        }