Determines whether the current WebPermission is a subset of the specified object. : WebPermission « Network « C# / C Sharp






Determines whether the current WebPermission is a subset of the specified object.

 
using System;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Text.RegularExpressions;

using System.Security.Permissions;
class MainClass
{
    public static void Main()
    {
        WebPermission targetPermission = new WebPermission();
        targetPermission.AddPermission(NetworkAccess.Connect, new Regex("www\\.google\\.com/Public/.*"));

        WebPermission connectPermission = new WebPermission();
        connectPermission.AddPermission(NetworkAccess.Connect, "www.google.com/Public/default.htm");

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

   
  








Related examples in the same category

1.Create a WebPermission class with the specified access rights for the specified URI regular expression.
2.Initializes a new instance of the WebPermission class with the specified access rights for the specified URI.
3.Adds the specified URI with the specified access rights to the current WebPermission.
4.Adds the specified URI string with the specified access rights to the current WebPermission.
5.Returns an enumeration of a single connect permissions held by this WebPermission.
6.Creates a copy of a WebPermission.
7.Reconstructs a WebPermission from an XML encoding.
8.Returns the logical intersection of two WebPermission instances.
9.Returns the logical union between two instances of the WebPermission class.