CSharpUtils._45.MongoAsync.MongoClientAsync.Connect C# (CSharp) Method

Connect() public method

public Connect ( string Host = "localhost", ushort Port = 27017 ) : void
Host string
Port ushort
return void
		public void Connect(string Host = "localhost", ushort Port = 27017)
		{
			this.TcpClient = new TcpClient();
			TcpClient.Connect(Host, Port);
		}