WebBrowserPermission.IsUnrestricted 方法

定义

返回一个值,该值指示当前权限是否不受限制。

public:
 virtual bool IsUnrestricted();
public bool IsUnrestricted ();
abstract member IsUnrestricted : unit -> bool
override this.IsUnrestricted : unit -> bool
Public Function IsUnrestricted () As Boolean

返回

如果 Level 属性设置为 Unrestricted,则为 true;否则为 false

实现

示例

下面的代码示例说明如何使用 IsUnrestricted 方法。

bool isUnrestricted = webBrowserPermission.IsUnrestricted();
Dim isUnrestricted As Boolean = webBrowserPermission.IsUnrestricted()

注解

不受限制的权限表示对受权限保护的任何和所有资源的访问权限。

此类的成员通常不在 XAML 中使用,或不能在 XAML 中使用。

适用于