Share via


ConnectionGroupName Property

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

When overridden in a descendant class, gets or sets the name of the connection group for the request.

Namespace:  System.Net
Assembly:  System.Http (in System.Http.dll)

Syntax

'Declaration
Public Overridable Property ConnectionGroupName As String
public virtual string ConnectionGroupName { get; set; }
public:
virtual property String^ ConnectionGroupName {
    String^ get ();
    void set (String^ value);
}
abstract ConnectionGroupName : string with get, set
override ConnectionGroupName : string with get, set
function get ConnectionGroupName () : String
function set ConnectionGroupName (value : String)

Property Value

Type: System. . :: . .String
The name of the connection group for the request.

Remarks

The ConnectionGroupName property associates specific requests within an application to one or more connection pools.

Note

The WebRequest class is an abstract class. The actual behavior of WebRequest instances at run time is determined by the descendant class returned by the WebRequest..::..Create method. For more information about default values and exceptions, see the documentation for the descendant classes, such as HttpWebRequest and FileWebRequest.

Notes to Inheritors

The ConnectionGroupName property typically associates a group of requests that share a set of credentials with a connection to an Internet resource to avoid potential security failures.

.NET Framework Security

See Also

Reference

WebRequest Class

System.Net Namespace