Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Called by the Dashboard when the user requests to refresh the list that is displayed in the list pane.
Namespace: Microsoft.WindowsServerSolutions.Administration.ObjectModel
Assembly: Microsoft.WindowsServerSolutions.Administration.ObjectModel (in Microsoft.WindowsServerSolutions.Administration.ObjectModel.dll)
Syntax
protected abstract void RefreshAndListenForUpdates(
IList<TBusinessObject> list
)
protected:
virtual void RefreshAndListenForUpdates(
IList<TBusinessObject>^ list
) abstract
Protected MustOverride Sub RefreshAndListenForUpdates (
list As IList(Of TBusinessObject)
)
Parameters
list
Type: System.Collections.Generic.IList<TBusinessObject>The IList to which business objects have been added.
Remarks
The IList is a handle to a list that is displayed in the list pane of the Dashboard. Derivers of ListProvider<TBusinessObject> may store a reference to this list and manipulate it until the Dashboard calls StopListeningForUpdates.
TBusinessObject represents a business object that encapsulates information and methods that relate to business data or business functionality. The information in the business object is exposed as properties.
See Also
ListProvider<TBusinessObject> Class
Microsoft.WindowsServerSolutions.Administration.ObjectModel Namespace
Return to top