TsgcHTTP2Client | HTTP/2 Headers

TsgcHTTP2Client allows customizing Headers sent to server when client connects  

Example: if you need to add this HTTP Header "Client: sgcWebSockets"


void OnHTTP2BeforeRequestt(TObject *Sender; const TsgcHTTP2ConnectionClient *Connection, 
  ref TStringList *Headers)
{
  Headers->Add("Client: sgcWebSockets");
}

You can use Request.CustomHeaders to add your customized headers too.