Gets or sets an item in the result collection. Namespace: Microsoft.ConfigurationManagement.ManagementProvider
Assembly: Microsoft.ConfigurationManagement.ManagementProvider (in microsoft.configurationmanagement.managementprovider.dll)

Usage

Visual Basic
Dim instance As ResultObjectsManager
Dim name As String
Dim value As IQueryPropertyItem

value = instance(name)

instance(name) = value

Syntax

Visual Basic
Public Default Property Item ( _
		name As String _
) As IQueryPropertyItem
C#
public IQueryPropertyItem this [
		string name
] { get; set; }
C++
public:
virtual property IQueryPropertyItem^ default [String^] {
		IQueryPropertyItem^ get (String^ name) sealed;
		void set (String^ name, IQueryPropertyItem^ value) sealed;
}
J#
/** @property */
public final IQueryPropertyItem get_Item (String name)

/** @property */
public final void set_Item (String name, IQueryPropertyItem value)
JScript

Parameters

name

[in] Name of the item.

Property Value

IQueryPropertyItem object.

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