Freigeben über


HttpClientConnection.UseProxyCredentials Eigenschaft

Definition

Dient zum Abrufen oder Festlegen eines Booleschen Typs, der angibt, ob die Verbindung Netzwerkanmeldeinformationen verwendet.

public:
 property bool UseProxyCredentials { bool get(); void set(bool value); };
public bool UseProxyCredentials { get; set; }
member this.UseProxyCredentials : bool with get, set
Public Property UseProxyCredentials As Boolean

Eigenschaftswert

Ein Boolescher Wert, der angibt, ob die Proxyverbindung Netzwerkanmeldeinformationen verwendet. Ein Wert von true gibt an, dass die Verbindung Netzwerkanmeldeinformationen verwendet. Ein Wert von false gibt an, dass die Verbindung keine Netzwerkanmeldeinformationen verwendet.

Beispiele

Im folgenden Codebeispiel wird ein HttpClientConnection, dann die Eigenschaften festgelegt. Der Wert der Eigenschaften erfordert ersatzende Werte, die für Ihre Anwendung gültig sind.

string[] byPassList = { "http://myserver", "http://companysite" };  
Package pkg = new Package();  
ConnectionManager httpConn = pkg.Connections.Add("HTTP");  
HttpClientConnection clientConn = new HttpClientConnection(httpConn.AcquireConnection(null));  
clientConn.ChunkSize = 5;  // Default is 1.  
clientConn.ProxyBypassList = byPassList;  
clientConn.Timeout = 60;  // Default is 30.  
clientConn.UseSecureConnection = false;  

// When UseServerCredentials is true, provide Domain and Password.  
clientConn.UseServerCredentials = true;  
clientConn.ServerDomain = "serverLogOnDomain";  
clientConn.ServerUserName = "serversUserName";  
clientConn.ServerPassword = "serverPasswd"; // Write-only property.  

// When UseProxyCredentials is true, provide Domain and Password.  
clientConn.UseProxyCredentials = true;  
clientConn.ProxyDomain = "myDomain";  
clientConn.ProxyPassword = "proxyPassword";  
Dim byPassList() As String = {"http://myserver", "http://companysite"}  

Dim pkg As Package =  New Package()   
Dim httpConn As ConnectionManager =  pkg.Connections.Add("HTTP")   
Dim clientConn As HttpClientConnection =  New HttpClientConnection(httpConn.AcquireConnection(Nothing))   
clientConn.ChunkSize = 5  ' Default is 1.  
clientConn.ProxyBypassList = byPassList  
clientConn.Timeout = 60  ' Default is 30.  
clientConn.UseSecureConnection = False  

' When UseServerCredentials is true, provide Domain and Password.  
clientConn.UseServerCredentials = True  
clientConn.ServerDomain = "serverLogOnDomain"  
clientConn.ServerUserName = "serversUserName"  
clientConn.ServerPassword = "serverPasswd" ' Write-only property.  

' When UseProxyCredentials is true, provide Domain and Password.  
clientConn.UseProxyCredentials = True  
clientConn.ProxyDomain = "myDomain"  
clientConn.ProxyPassword = "proxyPassword"  

Hinweise

Der Standardwert ist false.

Gilt für: