Create a WebPermission class with the specified access rights for the specified URI regular expression. : WebPermission « Network « C# / C Sharp






Create a WebPermission class with the specified access rights for the specified URI regular expression.

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

class MainClass
{
    public static void Main()
    {
        Regex myRegex = new Regex(@"http://www\.google\.com/.*");
        WebPermission myWebPermission = new WebPermission(NetworkAccess.Connect, myRegex);
        myWebPermission.Demand();
    }
}

   
  








Related examples in the same category

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