ServicePoint.ConnectionName Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Bağlantı adını alır.
public:
property System::String ^ ConnectionName { System::String ^ get(); };
public string ConnectionName { get; }
member this.ConnectionName : string
Public ReadOnly Property ConnectionName As String
Özellik Değeri
Bağlantı adını temsil eden bir String.
Örnekler
Console::WriteLine( "ConnectionName = {0}", sp->ConnectionName );
// Display the maximum number of connections allowed on this
// ServicePoint instance.
Console::WriteLine( "ConnectionLimit = {0}", sp->ConnectionLimit );
// Display the number of connections associated with this
// ServicePoint instance.
Console::WriteLine( "CurrentConnections = {0}", sp->CurrentConnections );
Console.WriteLine("ConnectionName = " + sp.ConnectionName);
// Display the maximum number of connections allowed on this
// ServicePoint instance.
Console.WriteLine("ConnectionLimit = " + sp.ConnectionLimit);
// Display the number of connections associated with this
// ServicePoint instance.
Console.WriteLine("CurrentConnections = " + sp.CurrentConnections);
Console.WriteLine(("ConnectionName = " + sp.ConnectionName))
' Display the maximum number of connections allowed on this
' ServicePoint instance.
Console.WriteLine(("ConnectionLimit = " + sp.ConnectionLimit.ToString()))
' Display the number of connections associated with this
' ServicePoint instance.
Console.WriteLine(("CurrentConnections = " + sp.CurrentConnections.ToString()))
Açıklamalar
Dikkat
WebRequest
, HttpWebRequest
, ServicePoint
ve WebClient
kullanım dışıdır ve bunları yeni geliştirme için kullanmamalısınız. Bunun yerine HttpClient kullanın.
ServicePoint nesnesi Uri bağımsız değişkeniyle bir FindServicePoint aşırı yüklemesi çağrılarak oluşturulduysa, ConnectionName özelliği kullanılan Uri nesnesinin Scheme özelliğini temsil eder.
ServicePoint nesnesi bir ağ konağından ve bağlantı noktasından oluşturulduysa, ConnectionName özelliği konağı ve ağ bağlantı noktasını temsil eden bir dize içerir. ConnectionName özelliği bir konaktan ve bağlantı noktasından oluşturulduğunda ayarlanırsa, yalnızca aynı ConnectionGroupName değerine sahip WebRequest nesneleri bu ServicePoint nesnesini kullanabilir.