namespace Vinno.vCloud.Common.FIS.vStation { public class vStationCreator { /// /// Create vstation /// /// The ip address of vstation. /// The port of the vstation /// The connection time out. Unit is seconds. /// public IvStation CreatevStation(string ipAddress, string port, int timeout) { return new vStation(ipAddress, port, timeout); } } }