UrlMembershipCondition(String) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the UrlMembershipCondition class with the URL that determines membership.
public:
UrlMembershipCondition(System::String ^ url);
public UrlMembershipCondition (string url);
new System.Security.Policy.UrlMembershipCondition : string -> System.Security.Policy.UrlMembershipCondition
Public Sub New (url As String)
Parameters
- url
- String
The URL for which to test.
Exceptions
The url
parameter is null
.
url
must be an absolute URL.
Remarks
The complete URL is considered, including the protocol (HTTP, HTTPS, FTP) and the file, for example: http://www.fourthcoffee.com/process/grind.htm
.
URLs can be matched exactly or by a wildcard in the final position, for example: http://www.fourthcoffee.com/process/*
.