Elastacloud.AzureManagement.Fluent.Commands.Services.GetDeploymentStatusCommand.GetDeploymentStatusCommand C# (CSharp) Method

GetDeploymentStatusCommand() private method

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