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

SetAzureDeploymentConfigCmdletInfo() public static method

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

            result.cmdletParams.Add(new CmdletParam("Config"));
            result.cmdletParams.Add(new CmdletParam("Configuration", configPath));

            return result;
        }