WMIConn.Password 属性

定义

如果不使用 Windows 身份验证,则设置连接所用的密码。

public:
 property System::String ^ Password {  void set(System::String ^ value); };
public string Password { set; }
member this.Password : string
Public Property Password As String

属性值

包含连接密码的字符串。

示例

下面的代码示例将 WMI 连接添加到包,并设置ServerName以及UserNamePassword属性。 需要修改代码示例,以便为应用程序的属性提供适当的值。

ConnectionManager WmiConn = pkg.Connections.Add("WMI");  
DtsProperty prop = WmiConn.Properties["ServerName"];  
prop.SetValue(WmiConn, @"\\localhost");  
WmiConn.Properties["Username"].SetValue(WmiConn, @"");  
WmiConn.Properties["Password"].SetValue(WmiConn, @"");  
Dim WmiConn As ConnectionManager =  pkg.Connections.Add("WMI")   
Dim prop As DtsProperty =  WmiConn.Properties("ServerName")   
prop.SetValue(WmiConn, "\\localhost")  
WmiConn.Properties("Username").SetValue(WmiConn, @"")  
WmiConn.Properties("Password").SetValue(WmiConn, @"")  

注解

如果不使用 Windows 身份验证,则必须提供连接所用的密码。

适用于