using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Settings;
using Tango.Web;
using Tango.Web.Security;
namespace Tango.PPC.Common.Web
{
public class PPCWebClient : PPCWebClientBase
{
public PPCWebClient(DeploymentSlot environment) : base(environment)
{
}
public PPCWebClient(DeploymentSlot environment, string token) : base(environment, token)
{
}
public PPCWebClient(string token) : this(SettingsManager.Default.GetOrCreate<PPCSettings>().DeploymentSlot, token)
{
}
public PPCWebClient() : this(null)
{
}
public PPCWebClient(string address, string token) : base(address, token)
{
}
public PPCWebClient(PPCWebClient other, TimeSpan requestTimeout) : base(other)
{
RequestTimeout = requestTimeout;
}
}
}