WebPermission.AcceptList Property

Definition

This property returns an enumeration of a single accept permissions held by this WebPermission. The possible objects types contained in the returned enumeration are String and Regex.

public:
 property System::Collections::IEnumerator ^ AcceptList { System::Collections::IEnumerator ^ get(); };
public System.Collections.IEnumerator AcceptList { get; }
member this.AcceptList : System.Collections.IEnumerator
Public ReadOnly Property AcceptList As IEnumerator

Property Value

The IEnumerator interface that contains accept permissions.

Examples

The following example prints the URLs in the AcceptList to the console.

// Get all URI's with Accept permission.
IEnumerator^ myEnum1 = myWebPermission1->AcceptList;
Console::WriteLine( "\n\nThe URIs with Accept permission are :\n" );
while ( myEnum1->MoveNext() )
{
   Console::WriteLine( "\tThe URI is : {0}", myEnum1->Current );
}
 
// Get all URI's with Accept permission.  
IEnumerator myEnum1 = myWebPermission1.AcceptList;
Console.WriteLine("\n\nThe URIs with Accept permission are :\n");
 while (myEnum1.MoveNext())
 { Console.WriteLine("\tThe URI is : "+myEnum1.Current); }
' Get all URI's with Accept permission.  
Dim myEnum1 As IEnumerator = myWebPermission1.AcceptList
Console.WriteLine(ControlChars.Cr + ControlChars.Cr + "The URIs with Accept permission are :" + ControlChars.Cr)
While myEnum1.MoveNext()
   Console.WriteLine((ControlChars.Tab + "The URI is : " + myEnum1.Current))
End While

Remarks

This property gets a list of local resources permitted by this WebPermission. The class to which you have applied WebPermission only has permission to receive an incoming connection to local 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.

Applies to

See also