WebViewControlPermissionRequest 类

定义

表示 WebView 中的权限请求。

public ref class WebViewControlPermissionRequest sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 393216)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Standard)]
class WebViewControlPermissionRequest final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 393216)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Standard)]
public sealed class WebViewControlPermissionRequest
Public NotInheritable Class WebViewControlPermissionRequest
继承
Object Platform::Object IInspectable WebViewControlPermissionRequest
属性

Windows 要求

设备系列
Windows 10, version 1803 (在 10.0.17134.0 中引入)
API contract
Windows.Foundation.UniversalApiContract (在 v6.0 中引入)

注解

有关详细信息,请参阅 IWebViewControl.PermissionRequested 事件。

IWebViewControl 中处理权限请求时,将获取 WebViewControlPermissionRequest 对象作为 WebViewPermissionRequestedEventArgs.PermissionRequest 属性的值。 可以调用 Allow 来授予请求, 调用“拒绝” 以拒绝请求,或 调用“延迟 ”以将请求推迟到以后的时间。 例如,如果需要提示用户同意,可以推迟请求。

属性

Id

获取权限请求的标识符。

PermissionType

获取一个值,该值指示所请求的权限的类型。

State

获取权限请求的当前状态。

Uri

获取源自权限请求的内容的统一资源标识符 (URI) 。

方法

Allow()

授予请求的权限。

Defer()

延迟以后允许或拒绝的权限请求。

Deny()

拒绝请求的权限。

适用于