1234567891011121314151617 |
- namespace Vinno.vCloud.Common.FIS.vStation
- {
- public class vStationCreator
- {
- /// <summary>
- /// Create vstation
- /// </summary>
- /// <param name="ipAddress">The ip address of vstation.</param>
- /// <param name="port">The port of the vstation</param>
- /// <param name="timeout">The connection time out. Unit is seconds.</param>
- /// <returns></returns>
- public IvStation CreatevStation(string ipAddress, string port, int timeout)
- {
- return new vStation(ipAddress, port, timeout);
- }
- }
- }
|