Share via


WMIConn.UseWindowsAuth 속성

Gets or sets a Boolean that indicates if Windows Authentication is used for the connection.

네임스페이스:  Microsoft.SqlServer.Dts.ManagedConnections
어셈블리:  Microsoft.SqlServer.ManagedConnections(Microsoft.SqlServer.ManagedConnections.dll)

구문

‘선언
Public Property UseWindowsAuth As Boolean 
    Get 
    Set
‘사용 방법
Dim instance As WMIConn 
Dim value As Boolean 

value = instance.UseWindowsAuth

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

속성 값

유형: System.Boolean
true if Windows Authentication is used in the connection; otherwise, false.

주의

This value determines if the user name or password properties are required. A value of true indicates that Windows Authentication is being used, thus a user name and password are not required in the connection.

The following code example adds a WMI connection to a package, and sets the ServerName, Namespace, and UseWindowsAuth properties.

ConnectionManager WmiConn = pkg.Connections.Add("WMI");
DtsProperty prop = WmiConn.Properties["ServerName"];
prop.SetValue(WmiConn, @"\\localhost");
WmiConn.Properties["Namespace"].SetValue(WmiConn, @"\root\myfolder");
WmiConn.Properties["UseWindowsAuth"].SetValue(WmiConn, true);
Dim WmiConn As ConnectionManager =  pkg.Connections.Add("WMI") 
Dim prop As DtsProperty =  WmiConn.Properties("ServerName") 
prop.SetValue(WmiConn, "\\localhost")
WmiConn.Properties("Namespace").SetValue(WmiConn, "\root\myfolder")
WmiConn.Properties("UseWindowsAuth").SetValue(WmiConn, True)

참고 항목

참조

WMIConn 클래스

Microsoft.SqlServer.Dts.ManagedConnections 네임스페이스