Microsoft.WindowsAzure.Management.ServiceManagement.Test.FunctionalTests.IaasCmdletInfo.SetAzureDeploymentCmdletInfo.SetAzureDeploymentConfigCmdletInfo C# (CSharp) 메소드

SetAzureDeploymentConfigCmdletInfo() 공개 정적인 메소드

public static SetAzureDeploymentConfigCmdletInfo ( string serviceName, string slot, string configPath ) : SetAzureDeploymentCmdletInfo
serviceName string
slot string
configPath string
리턴 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;
        }