Serves as a delegate, in Configuration Manager 2007, for refreshing the query node and result views if properties of a result object have been modified. Namespace: Microsoft.ConfigurationManagement.AdminConsole
Assembly: Microsoft.ConfigurationManagement.ManagementProvider (in microsoft.configurationmanagement.managementprovider.dll)

Usage

Visual Basic
Dim instance As New PropertyDataUpdated(AddressOf HandlerMethod)

Syntax

Visual Basic
Public Delegate Function PropertyDataUpdated ( _
		sender As Object, _
		refreshDataList As List(Of PropertyDataUpdateItem) _
) As Boolean
C#
public delegate bool PropertyDataUpdated (
		Object sender,
		List<PropertyDataUpdateItem> refreshDataList
)
C++
public delegate bool PropertyDataUpdated (
		Object^ sender, 
		List<PropertyDataUpdateItem^>^ refreshDataList
)
J#
/** @delegate */
public delegate boolean PropertyDataUpdated (
		Object sender, 
		List<PropertyDataUpdateItem> refreshDataList
)
JScript

Parameters

sender

[in] System.Object instance that indicates the sender of an event notifying that views need refreshing.

refreshDataList

[in] System.Collections.Generic.List object representing PropertyDataUpdateItem objects.

Return Value

true if property data is updated; otherwise false.

Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2003,Windows Vista

See Also