Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

WmiConfigurationAttribute::NamespaceSecurity Property

 

Gets or sets a Security Descriptor Definition Language (SDDL) string that specifies the security descriptor on the namespace in which the provider exposes management objects.

Namespace:   System.Management.Instrumentation
Assembly:  System.Core (in System.Core.dll)

public:
property String^ NamespaceSecurity {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

An SDDL string that represents the security descriptor on the namespace in which the provider exposes management objects.

For more information about how to represent security descriptors in SDDL format, see the Security Descriptor String Format topic in the MSDN library online.

The following example demonstrates how to use the NamespaceSecurity parameter to set the security descriptor on the root/SDTest namespace in which the provider implemented in this assembly exposes WMI classes.

[assembly: WmiConfiguration("root/SDTest", HostingModel = ManagementHostingModel.Decoupled, IdentifyLevel = false, NamespaceSecurity = "O:BAG:BAD:(A;CI;0x60003;;;WD)")]

.NET Framework
Available since 3.5
Return to top
Show:
© 2017 Microsoft