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;
        }