Proprietà WMIConn.Namespace
Gets or sets the WMI namespace.
Spazio dei nomi Microsoft.SqlServer.Dts.ManagedConnections
Assembly: Microsoft.SqlServer.ManagedConnections (in Microsoft.SqlServer.ManagedConnections.dll)
Sintassi
'Dichiarazione
Public Property Namespace As String
Get
Set
'Utilizzo
Dim instance As WMIConn
Dim value As String
value = instance.Namespace
instance.Namespace = value
public string Namespace { get; set; }
public:
property String^ Namespace {
String^ get ();
void set (String^ value);
}
member Namespace : string with get, set
function get Namespace () : String
function set Namespace (value : String)
Valore proprietà
Tipo: System.String
A String that contains the WMI namespace.
Esempi
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)