WebPermission.ConnectList Property
Assembly: System (in system.dll)
This property gets a list of remote resources that are permitted by this WebPermission. The class to which you have applied WebPermission only has permission to connect with resources found in this list.
Note: |
|---|
| You can add URIs to this list using AddPermission. |
Note: |
|---|
| A candidate URI string is checked against the list of relevant regular expressions (AcceptList or ConnectList) in two ways. First, the candidate URI string is checked against the appropriate list; then, if there is no match, the candidate URI string is converted into a Uri and checked against the appropriate list. |
The following example prints the URLs in the ConnectList to the console.
// Gets all URIs with Connect permission. IEnumerator myEnum = myWebPermission1.ConnectList; Console.WriteLine("\nThe URIs with Connect permission are :\n"); while (myEnum.MoveNext()) { Console.WriteLine("\tThe URI is : "+myEnum.Current); }
// Gets all URIs with Connect permission.
IEnumerator myEnum = myWebPermission1.get_ConnectList();
Console.WriteLine("\nThe URIs with Connect permission are :\n");
while (myEnum.MoveNext()) {
Console.WriteLine(("\tThe URI is : " + myEnum.get_Current()));
}
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.
Note: