TsgcWebSocketClient › 속성 › Specifications
클라이언트가 협상할 수 있는 WebSocket 와이어 사양을 선택합니다.
property Specifications: TsgcWSSpecifications read GetSpecifications write SetSpecifications;
RFC6455=True, Hixie76=False
RFC6455는 표준이며 권장되는 WebSocket 사양이며 기본적으로 활성화됩니다. Hixie76은 매우 오래된 브라우저와의 호환성을 위해 유지되는 레거시 초안 사양입니다. 클라이언트 측에서 이 플래그는 사실상 사용되지 않으며 False로 유지됩니다.
oClient := TsgcWebSocketClient.Create(nil);
oClient.URL := 'wss://www.esegece.com:2053';
oClient.Specifications.RFC6455 := true;
oClient.Active := true;