BugReport.BugReportService.Connect C# (CSharp) Method

Connect() private method

private Connect ( string serverName, int port ) : void
serverName string
port int
return void
		public void Connect (string serverName, int port)
		{
			using (TcpClient socketClient = new TcpClient (serverName, port)) {
			}
		}
	}
BugReportService