Do you know System.IO.Stream? Its' the .NET pattern for reading/writing? And its subclasses FileStream, MemoryStream, NetworkStream, etc. Well that's how one read and writes from the BluetoothClient/-Listener connection too. :-)
Dim peerStream As Stream = cli.GetStream()
peerStream.Write/Read ...