I have created a multi-threaded server but can not figure out how to send an object/string. I think I have the ability to receive it already.

Server created:
vb Code:
  1. serverThread = New Threading.Thread(AddressOf startHosting)

How do I specify an object or string parameter here?
vb Code:
  1. connection.Connect(ip, port)

When new users connect my thread accepts an object parameter:
vb Code:
  1. Private Sub clientWorker(ByVal param As Object)
  2. End Sub