WebPermission.ConnectList Property
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.
This property returns an enumeration of a single connect permissions held by this WebPermission. The possible objects types contained in the returned enumeration are String and Regex.
public:
property System::Collections::IEnumerator ^ ConnectList { System::Collections::IEnumerator ^ get(); };
public System.Collections.IEnumerator ConnectList { get; }
member this.ConnectList : System.Collections.IEnumerator
Public ReadOnly Property ConnectList As IEnumerator
Property Value
The IEnumerator interface that contains connect permissions.
Examples
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 : {0}", myEnum->Current );
}
// 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.
Dim myEnum As IEnumerator = myWebPermission1.ConnectList
Console.WriteLine(ControlChars.Cr + "The URIs with Connect permission are :" + ControlChars.Cr)
While myEnum.MoveNext()
Console.WriteLine((ControlChars.Tab + "The URI is : " + myEnum.Current))
End While
Remarks
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.