Elastacloud.AzureManagement.Fluent.Commands.Services.GetDeploymentStatusCommand.GetDeploymentStatusCommand C# (CSharp) Méthode

GetDeploymentStatusCommand() private méthode

Used to create an instance of GetDeploymentStatusCommand
private GetDeploymentStatusCommand ( string hostedServiceName, DeploymentSlot slot ) : System.Net
hostedServiceName string
slot DeploymentSlot
Résultat System.Net
        internal GetDeploymentStatusCommand(string hostedServiceName, DeploymentSlot slot)
        {
            OperationId = "hostedservices";
            ServiceType = "services";
            HttpCommand = (HostedServiceName = hostedServiceName) + "/deploymentslots/" + slot.ToString().ToLower();
            HttpVerb = HttpVerbGet;
            Slot = slot;
        }