Elastacloud.AzureManagement.Fluent.Commands.Services.GetDeploymentStatusCommand.GetDeploymentStatusCommand C# (CSharp) Метод

GetDeploymentStatusCommand() приватный Метод

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