TsgcHTTP2ClientProprietà › Settings

Settings Property

Parametri del frame HTTP/2 SETTINGS (RFC 7540 sezione 6.5) comunicati al server al momento della connessione.

Sintassi

property Settings: TsgcHTTP2Settings read FSettings write SetSettings;

Valore predefinito

Valori predefiniti del protocollo HTTP/2 (vedere Note)

Note

Controlla i valori inviati nel frame HTTP/2 SETTINGS iniziale durante il preambolo della connessione. Sotto-proprietà:

Esempio


oHTTP2 := TsgcHTTP2Client.Create(nil);
oHTTP2.Host := 'http2.akamai.com';
oHTTP2.Port := 443;
oHTTP2.TLS := True;
oHTTP2.Settings.EnablePush := False;
oHTTP2.Settings.InitialWindowSize := 1048576;
oHTTP2.Settings.MaxConcurrentStreams := 100;

Torna alle Proprietà