QWebEngineClientCertificateSelection Class
QWebEngineClientCertSelection 클래스는 클라이언트 인증서 선택을 래핑합니다. 더 보기...
헤더: | #include <QWebEngineClientCertificateSelection> |
CMake: | find_package(Qt6 REQUIRED COMPONENTS WebEngineCore) target_link_libraries(mytarget PRIVATE Qt6::WebEngineCore) |
qmake: | QT += webenginecore |
공용 함수
QList<QSslCertificate> | certificates() const |
QUrl | host() const |
void | select(const QSslCertificate &certificate) |
void | selectNone() |
상세 설명
웹 사이트에서 SSL 클라이언트 인증서를 요청하고 시스템의 클라이언트 인증서 저장소에 하나 이상의 인증서가 있는 경우, 이 클래스는 선택할 수 있는 인증서에 대한 액세스와 인증서 선택 방법을 제공합니다.
선택은 비동기적입니다. 인증서가 선택되지 않고 객체의 복사본이 유지되지 않으면 인증서 없이 로드가 계속됩니다.
QWebEnginePage::selectClientCertificate()도 참조하세요 .
멤버 함수 문서
QList<QSslCertificate> QWebEngineClientCertificateSelection::certificates() const
선택할 수 있는 클라이언트 인증서를 반환합니다.
select()도 참조하세요 .
QUrl QWebEngineClientCertificateSelection::host() const
클라이언트 인증서를 요청하는 서버의 호스트와 포트를 반환합니다.
void QWebEngineClientCertificateSelection::select(const QSslCertificate &certificate)
클라이언트 인증서를 선택합니다 certificate. 인증서는 certificates()에서 제공하는 인증서 중 하나이어야 합니다.
certificates() 및 selectNone()도 참조하세요 .
void QWebEngineClientCertificateSelection::selectNone()
제공된 인증서를 사용하지 않고 계속 진행합니다. 이는 선택하지 않은 경우 이 개체의 마지막 복사본을 삭제할 때 수행되는 작업과 동일합니다.
select()도 참조하세요 .
© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.