Obsolete Members for QQuickWebEngineProfile

以下成員源於類 QQuickWebEngineProfile 已過時。 提供它們是為使舊源代碼能繼續工作。強烈建議不要在新代碼中使用它們。

特性

公共函數

(obsolete) bool isUsedForGlobalCertificateVerification () const
(obsolete) void setRequestInterceptor (QWebEngineUrlRequestInterceptor * interceptor )
(obsolete) void setUseForGlobalCertificateVerification (bool b )

信號

(obsolete) void useForGlobalCertificateVerificationChanged ()

特性文檔編製

useForGlobalCertificateVerification : bool

This property is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.

This property holds whether this profile is used for downloading and caching during global certificate verification when using the online certificate status protocol (OCSP), certificate revokation lists (CRLs), and authority information access (AIA), for example.

As long as one profile has this option enabled, all other profiles will be able to use it for certificate verification. Only one profile at a time can have this option enabled. It is recommended that the profile has a disk HTTP cache to avoid needlessly re-downloading.

By default, no profile has this property enabled.

Originally only affected Linux/NSS installations, where having a profile with this role enabled OCSP.

Since 5.15.3 no longer does anything, and certificate verification is now done using AIO on the requesting profile.

該特性在 Qt 5.13 引入。

訪問函數:

bool isUsedForGlobalCertificateVerification () const
void setUseForGlobalCertificateVerification (bool b )

通知程序信號:

void useForGlobalCertificateVerificationChanged ()

成員函數文檔編製

void QQuickWebEngineProfile:: setRequestInterceptor ( QWebEngineUrlRequestInterceptor * interceptor )

此函數已過時。提供它是為使舊源代碼能繼續工作。強烈建議不要在新代碼中使用它。

注冊請求攔截器單例 interceptor 到攔截 URL 請求。

Profile (配置文件) 不擁有指針的所有權。

Interceptors installed with this method will call QWebEngineUrlRequestInterceptor::interceptRequest on the I/O thread. Therefore the user has to provide thread-safe interaction with the other user classes. Use setUrlRequestInterceptor 代替。

另請參閱 QWebEngineUrlRequestInterceptor .