コード例 #1
0
ファイル: Tds.cs プロジェクト: psni/mono
		protected virtual void InitComm (int port, int timeout)
		{
			comm = new TdsComm (dataSource, port, packetSize, timeout, tdsVersion);
		}
コード例 #2
0
ファイル: Tds.cs プロジェクト: jjenki11/blaze-chem-rendering
		public Tds (string dataSource, int port, int packetSize, int timeout, TdsVersion tdsVersion)
		{
			this.tdsVersion = tdsVersion;
			this.packetSize = packetSize;
			this.dataSource = dataSource;

			comm = new TdsComm (dataSource, port, packetSize, timeout, tdsVersion);
		}