AppHarbor.AppHarborCliClient.GetHostnames C# (CSharp) Метод

GetHostnames() публичный Метод

public GetHostnames ( string applicationId ) : IEnumerable
applicationId string
Результат IEnumerable
        public IEnumerable<Hostname> GetHostnames(string applicationId)
        {
            var hostnames = _api.GetHostnames(applicationId);
            if (hostnames == null)
            {
                throw new ApiException();
            }

            return hostnames;
        }