Gets or sets a value that indicates whether the query description is passed to the next level in the tree. Namespace: Microsoft.ConfigurationManagement.AdminConsole.Schema
Assembly: Microsoft.ConfigurationManagement.ManagementProvider (in microsoft.configurationmanagement.managementprovider.dll)

Usage

Visual Basic
Dim instance As QueryDescription
Dim value As Boolean

value = instance.InheritedByRelative

instance.InheritedByRelative = value

Syntax

Visual Basic
<XmlAttributeAttribute("InheritedByRelative")> _
<DefaultValueAttribute(True)> _
Public Property InheritedByRelative As Boolean
C#
[XmlAttributeAttribute("InheritedByRelative")] 
[DefaultValueAttribute(true)] 
public bool InheritedByRelative { get; set; }
C++
[XmlAttributeAttribute(L"InheritedByRelative")] 
[DefaultValueAttribute(true)] 
public:
property bool InheritedByRelative {
		bool get ();
		void set (bool value);
}
J#
/** @property */
/** @attribute DebuggerStepThroughAttribute() */ 
public boolean get_InheritedByRelative ()

/** @property */
/** @attribute DebuggerStepThroughAttribute() */ 
public void set_InheritedByRelative (boolean value)
JScript
DebuggerStepThroughAttribute 
public function get InheritedByRelative () : boolean

DebuggerStepThroughAttribute 
public function set InheritedByRelative (value : boolean)

Property Value

true (default) if the query description is passed to the next level in the tree; false if the query description is used only at the level for which it is explicitly defined.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2003,Windows Vista

See Also