UrlMembershipCondition(String) Constructor

Definition

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/*.

Applies to