Exago .NET API Documentation
Host Property
Example 
WebReports.Api.Scheduler Namespace > SchedulerHost Class : Host Property
The origin that designates this Scheduler Service.
Syntax
public System.string Host {get; set;}

Property Value

A string containing a scheme, host and port that refers to a Scheduler Service.
Example
This example sets the contents of a Label to "http://localhost:2001"
List<SchedulerHost> hosts = new List<SchedulerHost>();
hosts = rs.GetAllHosts();

foreach (SchedulerHost host in hosts)
{
	Label1.Text = " Host: " + host.Host.ToString();
}
See Also

Reference

SchedulerHost Class
SchedulerHost Members