Udostępnij przez


Właściwość HttpClientConnection.ProxyURL

Pobiera lub ustawia adres URL, który określa lokalizację serwera proxy.

Przestrzeń nazw:  Microsoft.SqlServer.Dts.Runtime
Zestaw:  Microsoft.SqlServer.ManagedDTS (w Microsoft.SqlServer.ManagedDTS.dll)

Składnia

'Deklaracja
Public Property ProxyURL As String
    Get
    Set
'Użycie
Dim instance As HttpClientConnection
Dim value As String

value = instance.ProxyURL

instance.ProxyURL = value
public string ProxyURL { get; set; }
public:
property String^ ProxyURL {
    String^ get ();
    void set (String^ value);
}
member ProxyURL : string with get, set
function get ProxyURL () : String
function set ProxyURL (value : String)

Wartość właściwości

Typ: System.String
A ciąg zawierający lokalizacji URL serwera proxy.

Przykłady

Poniższy przykład kodu pokazuje, jak utworzyć połączenie HTTP pakiet i utworzyć połączenie klient.Następnie ustawia kilka właściwość, łącznie z ProxyURL właściwość.

// Create an HTTP connection.
ConnectionManager httpConn = pkg.Connections.Add("HTTP");
HttpClientConnection clientConn = new 
           HttpClientConnection(httpConn.AcquireConnection(null));
string HTTPUrl = @"http://<yourserver>/<yourfolder>/test.asmx?wsdl";
clientConn.UseProxy = true;
clientConn.ProxyURL = @"http://<yourproxy>";
clientConn.BypassProxyOnLocal = true;
clientConn.ServerURL = HTTPUrl;
' Create an HTTP connection.
Dim httpConn As ConnectionManager =  pkg.Connections.Add("HTTP") 
HttpClientConnection clientConn = New 
           HttpClientConnection(httpConn.AcquireConnection(Nothing))
Dim HTTPUrl As String =  "http:// <yourserver>/<yourfolder>/test.asmx?wsdl" 
clientConn.UseProxy = True
clientConn.ProxyURL = "http://<yourproxy>"
clientConn.BypassProxyOnLocal = True
clientConn.ServerURL = HTTPUrl