Click to Rate and Give Feedback
TechNet
TechNet Library
Collapse All/Expand All Collapse All
This page is specific to
Microsoft Visual Studio 2010/.NET Framework 4

Other versions are also available for the following:
.NET Framework Class Library
FtpWebRequest..::.ConnectionGroupName Property

Gets or sets the name of the connection group that contains the service point used to send the current request.

Namespace:  System.Net
Assembly:  System (in System.dll)
Visual Basic
Public Overrides Property ConnectionGroupName As String
C#
public override string ConnectionGroupName { get; set; }
Visual C++
public:
virtual property String^ ConnectionGroupName {
    String^ get () override;
    void set (String^ value) override;
}
F#
abstract ConnectionGroupName : string with get, set
override ConnectionGroupName : string with get, set

Property Value

Type: System..::.String
A String value that contains a connection group name.
ExceptionCondition
InvalidOperationException

A new value was specified for this property for a request that is already in progress.

Connection groups associate a set of requests with a particular connection or set of connections. The connections in a connection group can be reused only by requests originating in the same application domain, when the credentials on the request are the same and the request specifies the connection group name. When a request does not specify a connection group name, any existing connection to the requested server that is not associated with a connection group can be used. When the credentials are not the same, the existing connection is closed and the new request must be reauthenticated.

Using connection groups can improve performance because this allows all of the requests for a user to reuse the connection authenticated with the user's credentials.

Changing the ConnectionGroupName property after calling the GetRequestStream, BeginGetRequestStream, GetResponse, or BeginGetResponse method causes an InvalidOperationException exception.

The following code example retrieves the value of this property.

Visual Basic
Dim proxy As IWebProxy = request.Proxy
If proxy IsNot Nothing Then
    Console.WriteLine("Proxy: {0}", proxy.GetProxy(request.RequestUri))
Else
    Console.WriteLine("Proxy: (none)")
End If

Console.WriteLine("ConnectionGroup: {0}", If(request.ConnectionGroupName Is Nothing, "none", request.ConnectionGroupName))
C#
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
);
Visual C++
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 );

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2012 Microsoft. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker