vStationCreator.cs 583 B

1234567891011121314151617
  1. namespace Vinno.vCloud.Common.FIS.vStation
  2. {
  3. public class vStationCreator
  4. {
  5. /// <summary>
  6. /// Create vstation
  7. /// </summary>
  8. /// <param name="ipAddress">The ip address of vstation.</param>
  9. /// <param name="port">The port of the vstation</param>
  10. /// <param name="timeout">The connection time out. Unit is seconds.</param>
  11. /// <returns></returns>
  12. public IvStation CreatevStation(string ipAddress, string port, int timeout)
  13. {
  14. return new vStation(ipAddress, port, timeout);
  15. }
  16. }
  17. }