Example: if you need to add this HTTP Header "Client: sgcWebSockets"
void OnHandshake(TsgcWSConnection Connection, ref string Headers)
{
Headers = Headers + Environment.NewLine + "Client: sgcWebSockets";
}
You can check HandShake string before is sent to server using OnHandShake event too.