Gets or sets a value that indicates whether the property can be used in a search query. Namespace: Microsoft.ConfigurationManagement.AdminConsole.Schema
Assembly: Microsoft.ConfigurationManagement.ManagementProvider (in microsoft.configurationmanagement.managementprovider.dll)

Usage

Visual Basic
Dim instance As ManagementClassPropertyDescription
Dim value As Boolean

value = instance.IsSearchable

instance.IsSearchable = value

Syntax

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

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

DebuggerStepThroughAttribute 
public function set IsSearchable (value : boolean)

Property Value

true if the property can be used in a search query; otherwise false.

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