Propriété Namespace
Gets or sets the WMI namespace.
Espace de noms : Microsoft.SqlServer.Dts.ManagedConnections
Assembly : Microsoft.SqlServer.ManagedConnections (en Microsoft.SqlServer.ManagedConnections.dll)
Syntaxe
'Déclaration
Public Property Namespace As String
Get
Set
'Utilisation
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)
Valeur de propriété
Type : System. . :: . .String
A String that contains the WMI namespace.
Exemples
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)