WebPermission.IsSubsetOf determines whether the current WebPermission is a subset of the specified object. : WebPermission « Network Remote « VB.Net






WebPermission.IsSubsetOf determines whether the current WebPermission is a subset of the specified object.

 


Imports System.Text.RegularExpressions
Imports System.Net
Module Example
   Public Sub Main()
      Dim targetPermission As New WebPermission()
      targetPermission.AddPermission(NetworkAccess.Connect, New Regex("www\.domain\.com/Public/.*"))

      Dim connectPermission As New WebPermission()
      connectPermission.AddPermission(NetworkAccess.Connect, "www.domain.com/Public/default.htm")

      Console.WriteLine(("Is the second URI a subset of the first one?: " & connectPermission.IsSubsetOf(targetPermission)))

   End Sub
End Module

   
  








Related examples in the same category

1.WebPermission Class
2.Get all the URIs with Accept permission
3.Create WebPermission with the access rights for the specified URI regular expression.
4.Create WebPermission class with the access rights for the specified URI.
5.Create WebPermission that passes all demands or fails all demands.
6.WebPermission.AcceptList Property returns accept permissions
7.Adds URI with the access rights to the current WebPermission.
8.Adds URI string with the specified access rights to the current WebPermission.
9.WebPermission.FromXml creates a WebPermission from an XML encoding.
10.WebPermission.Intersect returns intersection of two WebPermission instances.
11.WebPermission.Union Method returns union between two instances of the WebPermission class.