Microsoft.WindowsAzure.Management.CloudService.Model.GetDeploymentStatus.GetDeploymentStatusProcess C# (CSharp) Méthode

GetDeploymentStatusProcess() public méthode

public GetDeploymentStatusProcess ( string rootPath, string inServiceName, string inSlot, string subscription ) : string
rootPath string
inServiceName string
inSlot string
subscription string
Résultat string
        public string GetDeploymentStatusProcess(string rootPath, string inServiceName, string inSlot, string subscription)
        {
            string serviceName;
            string slot;

            InitializeArguments(rootPath, inServiceName, inSlot, subscription, out serviceName, out slot);
            string deploymentStatus = GetStatus(serviceName, slot);

            return deploymentStatus;
        }