PropertyDataUpdated Delegate
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
'Usage
Dim instance As New PropertyDataUpdated(AddressOf HandlerMethod)
Syntax
'Declaration
Public Delegate Function PropertyDataUpdated ( _
sender As Object, _
refreshDataList As List(Of PropertyDataUpdateItem) _
) As Boolean
public delegate bool PropertyDataUpdated (
Object sender,
List<PropertyDataUpdateItem> refreshDataList
)
public delegate bool PropertyDataUpdated (
Object^ sender,
List<PropertyDataUpdateItem^>^ refreshDataList
)
/** @delegate */
public delegate boolean PropertyDataUpdated (
Object sender,
List<PropertyDataUpdateItem> refreshDataList
)
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
Reference
Microsoft.ConfigurationManagement.AdminConsole Namespace
PropertyDataUpdateItem