AppHarbor.AppHarborCliClient.GetHostnames C# (CSharp) Method

GetHostnames() public method

public GetHostnames ( string applicationId ) : IEnumerable
applicationId string
return IEnumerable
        public IEnumerable<Hostname> GetHostnames(string applicationId)
        {
            var hostnames = _api.GetHostnames(applicationId);
            if (hostnames == null)
            {
                throw new ApiException();
            }

            return hostnames;
        }