次の方法で共有


UseProxyCredentials プロパティ

接続がネットワーク資格情報を使用するかどうかを示す Boolean を取得します。値の設定も可能です。

名前空間:  Microsoft.SqlServer.Dts.Runtime
アセンブリ:  Microsoft.SqlServer.ManagedDTS (Microsoft.SqlServer.ManagedDTS.dll)

構文

'宣言
Public Property UseProxyCredentials As Boolean
    Get
    Set
'使用
Dim instance As HttpClientConnection
Dim value As Boolean

value = instance.UseProxyCredentials

instance.UseProxyCredentials = value
public bool UseProxyCredentials { get; set; }
public:
property bool UseProxyCredentials {
    bool get ();
    void set (bool value);
}
member UseProxyCredentials : bool with get, set
function get UseProxyCredentials () : boolean
function set UseProxyCredentials (value : boolean)

プロパティ値

型: System. . :: . .Boolean
プロキシ接続がネットワーク資格情報を使用するかどうかを示す Boolean です。値が true の場合、接続がネットワーク資格情報を使用することを示します。値が false の場合、接続がネットワーク資格情報を使用しないことを示します。

説明

既定値は false です。

使用例

次のコード例では、HttpClientConnection を作成し、プロパティを設定します。プロパティの値は、アプリケーションにとって有効な値に置き換える必要があります。

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"