WebPermission.ConnectList 属性
定义
此属性返回该 WebPermission 持有的单个连接权限的枚举。This property returns an enumeration of a single connect permissions held by this WebPermission. 返回枚举中包含的可能对象类型是 String 和 Regex。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
属性值
包含连接权限的 IEnumerator 接口。The IEnumerator interface that contains connect permissions.
示例
下面的示例将中的 Url 输出 ConnectList 到控制台。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
注解
此属性获取此允许的远程资源的列表 WebPermission 。This property gets a list of remote resources that are permitted by this WebPermission. 你应用的类 WebPermission 仅具有连接到此列表中找到的资源的权限。The class to which you have applied WebPermission only has permission to connect with resources found in this list.
备注
可以使用将 Uri 添加到此列表 AddPermission 。You can add URIs to this list using AddPermission.
备注
将根据相关正则表达式的列表( AcceptList ConnectList 以两种方式 (或) 检查候选 URI 字符串。A candidate URI string is checked against the list of relevant regular expressions (AcceptList or ConnectList) in two ways. 首先,根据相应的列表检查候选 URI 字符串;如果没有匹配项,则将候选 URI 字符串转换为 Uri ,并根据相应的列表进行检查。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.