FtpWebRequest.ConnectionGroupName 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置连接组的名称,该连接组包含用于发送当前请求的服务点。
public:
virtual property System::String ^ ConnectionGroupName { System::String ^ get(); void set(System::String ^ value); };
public override string? ConnectionGroupName { get; set; }
public override string ConnectionGroupName { get; set; }
member this.ConnectionGroupName : string with get, set
Public Overrides Property ConnectionGroupName As String
属性值
包含连接组名称的 String 值。
例外
对于一个已在进行的请求为此属性指定了一个新值。
示例
下面的代码示例检索此属性的值。
IWebProxy^ proxy = request->Proxy;
if ( proxy )
{
Console::WriteLine( "Proxy: {0}", proxy->GetProxy( request->RequestUri ) );
}
else
{
Console::WriteLine( "Proxy: (none)" );
}
Console::WriteLine( "ConnectionGroup: {0}", request->ConnectionGroupName == nullptr ? "none" : request->ConnectionGroupName );
IWebProxy proxy = request.Proxy;
if (proxy != null)
{
Console.WriteLine("Proxy: {0}", proxy.GetProxy(request.RequestUri));
}
else
{
Console.WriteLine("Proxy: (none)");
}
Console.WriteLine("ConnectionGroup: {0}",
request.ConnectionGroupName == null ? "none" : request.ConnectionGroupName
);
注解
连接组将一组请求与特定连接或一组连接相关联。 当请求上的凭据相同且请求指定连接组名称时,只有源自同一应用程序域的请求才能重复使用连接组中的连接。 当请求未指定连接组名称时,可以使用与所请求服务器不与连接组关联的任何现有连接。 如果凭据不相同,则会关闭现有连接,并且必须重新验证新请求。
使用连接组可以提高性能,因为这允许用户的所有请求重复使用使用用户凭据进行身份验证的连接。
在调用 GetRequestStream、 、 GetResponseBeginGetRequestStream或 BeginGetResponse 方法后更改 ConnectionGroupName 属性会导致异常InvalidOperationException。