using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Settings;
using System.Reflection;
namespace Tango.Web
{
public class WebSettings : SettingsBase
{
///
/// Gets or sets the deployment slot.
///
public DeploymentSlot DeploymentSlot { get; set; }
///
/// Gets the machine service address.
///
///
public String GetMachineServiceAddress()
{
return DeploymentSlot.GetAttribute().Address;
}
}
}