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.
Represents an event that is raised when new data is available.
Namespace: Microsoft.WindowsServerSolutions.Administration.ObjectModel
Assembly: Microsoft.WindowsServerSolutions.Administration.ObjectModel (in Microsoft.WindowsServerSolutions.Administration.ObjectModel.dll)
Syntax
public event EventHandler<DataUpdatedEventArgs<TBusinessObject>> DataUpdated
public:
event EventHandler<DataUpdatedEventArgs<TBusinessObject>^>^ DataUpdated {
void add(EventHandler<DataUpdatedEventArgs<TBusinessObject>^>^ value);
void remove(EventHandler<DataUpdatedEventArgs<TBusinessObject>^>^ value);
}
Public Event DataUpdated As EventHandler(Of DataUpdatedEventArgs(Of TBusinessObject))
Remarks
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
PollingListProvider<TBusinessObject> Class
Microsoft.WindowsServerSolutions.Administration.ObjectModel Namespace
Return to top